|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 7 | + <artifactId>plugin</artifactId> |
| 8 | + <version>4.2</version> |
| 9 | + <relativePath/> |
| 10 | + </parent> |
| 11 | + <groupId>io.jenkins.plugins</groupId> |
| 12 | + <artifactId>dark-theme</artifactId> |
| 13 | + <version>${revision}${changelist}</version> |
| 14 | + <packaging>hpi</packaging> |
| 15 | + <properties> |
| 16 | + <revision>0.0.3</revision> |
| 17 | + <changelist>-SNAPSHOT</changelist> |
| 18 | + <jenkins.version>2.240</jenkins.version> |
| 19 | + <java.level>8</java.level> |
| 20 | + <tagNameFormat>@{project.version}</tagNameFormat> |
| 21 | + <useBeta>true</useBeta> |
| 22 | + </properties> |
| 23 | + <name>Dark Theme</name> |
| 24 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
| 25 | + <dependencyManagement> |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>io.jenkins.tools.bom</groupId> |
| 29 | + <artifactId>bom-2.222.x</artifactId> |
| 30 | + <version>10</version> |
| 31 | + <scope>import</scope> |
| 32 | + <type>pom</type> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + </dependencyManagement> |
| 36 | + |
| 37 | + <dependencies> |
| 38 | + <dependency> |
| 39 | + <groupId>io.jenkins.plugins</groupId> |
| 40 | + <artifactId>theme-manager</artifactId> |
| 41 | + <version>1.0-rc18.6e3cdcafbda5</version> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>io.jenkins</groupId> |
| 46 | + <artifactId>configuration-as-code</artifactId> |
| 47 | + <scope>test</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>io.jenkins.configuration-as-code</groupId> |
| 51 | + <artifactId>test-harness</artifactId> |
| 52 | + <scope>test</scope> |
| 53 | + </dependency> |
| 54 | + </dependencies> |
| 55 | + |
| 56 | + <licenses> |
| 57 | + <license> |
| 58 | + <name>MIT License</name> |
| 59 | + <url>https://opensource.org/licenses/MIT</url> |
| 60 | + </license> |
| 61 | + </licenses> |
| 62 | + |
| 63 | + <developers> |
| 64 | + <developer> |
| 65 | + <id>timja</id> |
| 66 | + <name>Tim Jacomb</name> |
| 67 | + </developer> |
| 68 | + </developers> |
| 69 | + |
| 70 | + <scm> |
| 71 | + <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
| 72 | + < developerConnection>scm:git: [email protected]:jenkinsci/ ${project.artifactId}-plugin.git</ developerConnection> |
| 73 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
| 74 | + <tag>${scmTag}</tag> |
| 75 | + </scm> |
| 76 | + |
| 77 | + <repositories> |
| 78 | + <repository> |
| 79 | + <id>repo.jenkins-ci.org</id> |
| 80 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 81 | + </repository> |
| 82 | + </repositories> |
| 83 | + <pluginRepositories> |
| 84 | + <pluginRepository> |
| 85 | + <id>repo.jenkins-ci.org</id> |
| 86 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 87 | + </pluginRepository> |
| 88 | + </pluginRepositories> |
| 89 | +</project> |
0 commit comments