|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
2 | 2 |
|
3 | | - <modelVersion>4.0.0</modelVersion> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <parent> |
6 | | - <groupId>org.jenkins-ci</groupId> |
7 | | - <artifactId>jenkins</artifactId> |
8 | | - <version>1.29</version> |
9 | | - </parent> |
| 5 | + <parent> |
| 6 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 7 | + <artifactId>plugin</artifactId> |
| 8 | + <version>2.26</version> |
| 9 | + </parent> |
10 | 10 |
|
11 | | - <groupId>org.jenkins-ci.lib</groupId> |
12 | | - <artifactId>envinject-lib</artifactId> |
13 | | - <version>1.25-SNAPSHOT</version> |
14 | | - <packaging>jar</packaging> |
15 | | - <name>Jenkins EnvInject Library</name> |
16 | | - <url>https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin</url> |
| 11 | + <artifactId>envinject-api</artifactId> |
| 12 | + <version>1.0-SNAPSHOT</version> |
| 13 | + <packaging>jar</packaging> |
| 14 | + <name>EnvInject API Plugin</name> |
| 15 | + <description>Stores shared logic for Environment Injection management</description> |
| 16 | + <url>https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+API+Plugin</url> |
17 | 17 |
|
18 | | - <licenses> |
19 | | - <license> |
20 | | - <name>MIT license</name> |
21 | | - <comments>All source code is under the MIT license.</comments> |
22 | | - </license> |
23 | | - </licenses> |
| 18 | + <licenses> |
| 19 | + <license> |
| 20 | + <name>MIT License</name> |
| 21 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 22 | + <distribution>repo</distribution> |
| 23 | + </license> |
| 24 | + </licenses> |
24 | 25 |
|
25 | | - <developers> |
26 | | - <developer> |
27 | | - <id>gbois</id> |
28 | | - <name>Gregory Boissinot</name> |
29 | | - <timezone>+1</timezone> |
30 | | - <roles> |
31 | | - <role>Project Owner</role> |
32 | | - <role>Project Lead Developer</role> |
33 | | - </roles> |
34 | | - </developer> |
35 | | - </developers> |
| 26 | + <developers> |
| 27 | + <developer> |
| 28 | + <id>oleg_nenashev</id> |
| 29 | + <name>Oleg Nenashev</name> |
| 30 | + <timezone>+1</timezone> |
| 31 | + </developer> |
| 32 | + </developers> |
36 | 33 |
|
37 | | - <properties> |
38 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
39 | | - <maven.compiler.source>1.6</maven.compiler.source> |
40 | | - <maven.compiler.target>1.6</maven.compiler.target> |
41 | | - <jenkins.core.version>1.532</jenkins.core.version> |
42 | | - </properties> |
| 34 | + <properties> |
| 35 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 36 | + <java.level>7</java.level> |
| 37 | + <jenkins.version>1.625.3</jenkins.version> |
| 38 | + </properties> |
43 | 39 |
|
44 | | - <scm> |
45 | | - <connection>scm:git:git://github.com/jenkinsci/envinject-lib.git</connection> |
46 | | - <developerConnection>scm:git:git@github.com:jenkinsci/envinject-lib.git</developerConnection> |
47 | | - <tag>HEAD</tag> |
| 40 | + <scm> |
| 41 | + <connection>scm:git:ssh://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
| 42 | + <developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git</developerConnection> |
| 43 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
| 44 | + <tag>HEAD</tag> |
48 | 45 | </scm> |
| 46 | + |
| 47 | + <dependencies> |
| 48 | + <dependency> |
| 49 | + <groupId>org.jenkins-ci.lib</groupId> |
| 50 | + <artifactId>envinject-lib</artifactId> |
| 51 | + <version>1.25</version> |
| 52 | + </dependency> |
| 53 | + </dependencies> |
49 | 54 |
|
50 | | - <dependencies> |
| 55 | + <repositories> |
| 56 | + <repository> |
| 57 | + <id>repo.jenkins-ci.org</id> |
| 58 | + <name>Jenkins Repository</name> |
| 59 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 60 | + </repository> |
| 61 | + </repositories> |
51 | 62 |
|
52 | | - <dependency> |
53 | | - <groupId>org.jenkins-ci.main</groupId> |
54 | | - <artifactId>jenkins-core</artifactId> |
55 | | - <version>${jenkins.core.version}</version> |
56 | | - <scope>provided</scope> |
57 | | - </dependency> |
58 | | - |
59 | | - </dependencies> |
60 | | - |
61 | | - <repositories> |
62 | | - <repository> |
63 | | - <id>repo.jenkins-ci.org</id> |
64 | | - <name>Jenkins Repository</name> |
65 | | - <url>http://repo.jenkins-ci.org/public/</url> |
66 | | - </repository> |
67 | | - </repositories> |
68 | | - |
69 | | - <pluginRepositories> |
70 | | - <pluginRepository> |
71 | | - <id>repo.jenkins-ci.org</id> |
72 | | - <url>http://repo.jenkins-ci.org/public/</url> |
73 | | - </pluginRepository> |
74 | | - </pluginRepositories> |
| 63 | + <pluginRepositories> |
| 64 | + <pluginRepository> |
| 65 | + <id>repo.jenkins-ci.org</id> |
| 66 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 67 | + </pluginRepository> |
| 68 | + </pluginRepositories> |
75 | 69 |
|
76 | 70 | </project> |
0 commit comments