|
1 | 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | | - <parent> |
6 | | - <groupId>org.jenkins-ci.plugins</groupId> |
7 | | - <artifactId>plugin</artifactId> |
8 | | - <version>5.28</version> |
9 | | - <relativePath /> |
10 | | - </parent> |
| 6 | + <parent> |
| 7 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 8 | + <artifactId>plugin</artifactId> |
| 9 | + <version>5.28</version> |
| 10 | + <relativePath/> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <groupId>io.jenkins.plugins</groupId> |
| 14 | + <artifactId>vigilnz-security</artifactId> |
| 15 | + <version>${revision}${changelist}</version> |
| 16 | + <packaging>hpi</packaging> |
| 17 | + |
| 18 | + <!-- Plugin Name --> |
| 19 | + <name>Vigilnz Security</name> |
| 20 | + <url>https://dev.vigilnz.com/</url> |
| 21 | + <licenses> |
| 22 | + <license> |
| 23 | + <name>MIT License</name> |
| 24 | + <url>https://opensource.org/license/mit/</url> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" |
| 28 | + child.scm.url.inherit.append.path="false"> |
| 29 | + <connection>scm:git:https://github.com/${gitHubRepo}</connection> |
| 30 | + <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection> |
| 31 | + <tag>${scmTag}</tag> |
| 32 | + <url>https://github.com/${gitHubRepo}</url> |
| 33 | + </scm> |
11 | 34 |
|
12 | | - <groupId>io.jenkins.plugins</groupId> |
13 | | - <artifactId>vigilnz-security</artifactId> |
14 | | - <version>${revision}${changelist}</version> |
15 | | - <packaging>hpi</packaging> |
| 35 | + <properties> |
| 36 | + <revision>1.0</revision> |
| 37 | + <changelist>-SNAPSHOT</changelist> |
| 38 | + <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
| 39 | + <jenkins.baseline>2.516</jenkins.baseline> |
| 40 | + <jenkins.version>${jenkins.baseline}.3</jenkins.version> |
| 41 | + <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
16 | 42 |
|
17 | | - <!-- Plugin Name --> |
18 | | - <name>Vigilnz Security</name> |
19 | | - <url>https://dev.vigilnz.com/</url> |
20 | | - <licenses> |
21 | | - <license> |
22 | | - <name>MIT License</name> |
23 | | - <url>https://opensource.org/license/mit/</url> |
24 | | - </license> |
25 | | - </licenses> |
26 | | - <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false"> |
27 | | - <connection>scm:git:https://github.com/${gitHubRepo}</connection> |
28 | | - <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection> |
29 | | - <tag>${scmTag}</tag> |
30 | | - <url>https://github.com/${gitHubRepo}</url> |
31 | | - </scm> |
| 43 | + <spotless.check.skip>false</spotless.check.skip> |
| 44 | + <ban-junit4-imports.skip>false</ban-junit4-imports.skip> |
| 45 | + <hpi.strictBundledArtifacts>true</hpi.strictBundledArtifacts> |
| 46 | + </properties> |
32 | 47 |
|
33 | | - <properties> |
34 | | - <revision>1.0</revision> |
35 | | - <changelist>-SNAPSHOT</changelist> |
36 | | - <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
37 | | - <jenkins.baseline>2.516</jenkins.baseline> |
38 | | - <jenkins.version>${jenkins.baseline}.3</jenkins.version> |
39 | | - <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
| 48 | + <dependencyManagement> |
| 49 | + <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>io.jenkins.tools.bom</groupId> |
| 52 | + <artifactId>bom-${jenkins.baseline}.x</artifactId> |
| 53 | + <version>5659.vecf9e2dc5a_ed</version> |
| 54 | + <type>pom</type> |
| 55 | + <scope>import</scope> |
| 56 | + </dependency> |
40 | 57 |
|
41 | | - <spotless.check.skip>false</spotless.check.skip> |
42 | | - <ban-junit4-imports.skip>false</ban-junit4-imports.skip> |
43 | | - <hpi.strictBundledArtifacts>true</hpi.strictBundledArtifacts> |
44 | | - </properties> |
| 58 | + <dependency> |
| 59 | + <groupId>org.jenkins-ci.main</groupId> |
| 60 | + <artifactId>jenkins-core</artifactId> |
| 61 | + <version>${jenkins.version}</version> |
| 62 | + <scope>provided</scope> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + </dependencyManagement> |
45 | 66 |
|
46 | | - <dependencyManagement> |
47 | 67 | <dependencies> |
48 | | - <dependency> |
49 | | - <groupId>io.jenkins.tools.bom</groupId> |
50 | | - <artifactId>bom-${jenkins.baseline}.x</artifactId> |
51 | | - <version>5659.vecf9e2dc5a_ed</version> |
52 | | - <type>pom</type> |
53 | | - <scope>import</scope> |
54 | | - </dependency> |
| 68 | + <!-- Jenkins core --> |
| 69 | + <dependency> |
| 70 | + <groupId>org.jenkins-ci.main</groupId> |
| 71 | + <artifactId>jenkins-core</artifactId> |
| 72 | + <version>${jenkins.version}</version> |
| 73 | + <scope>provided</scope> |
| 74 | + </dependency> |
55 | 75 |
|
56 | | - <dependency> |
57 | | - <groupId>org.jenkins-ci.main</groupId> |
58 | | - <artifactId>jenkins-core</artifactId> |
59 | | - <version>${jenkins.version}</version> |
60 | | - </dependency> |
| 76 | + <!-- Credentials plugin --> |
| 77 | + <dependency> |
| 78 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 79 | + <artifactId>credentials</artifactId> |
| 80 | + <version>1337.v60b_d7b_c7b_c9f</version> |
| 81 | + </dependency> |
61 | 82 |
|
62 | | - <dependency> |
63 | | - <groupId>org.jenkins-ci.plugins</groupId> |
64 | | - <artifactId>credentials</artifactId> |
65 | | - <version>1337.v60b_d7b_c7b_c9f</version> |
66 | | - </dependency> |
| 83 | + <!-- Pipeline Step API --> |
| 84 | + <dependency> |
| 85 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 86 | + <artifactId>workflow-step-api</artifactId> |
| 87 | + <version>2.24</version> |
| 88 | + </dependency> |
| 89 | + |
| 90 | + <!-- Pipeline API --> |
| 91 | + <dependency> |
| 92 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 93 | + <artifactId>workflow-api</artifactId> |
| 94 | + <version>2.47</version> |
| 95 | + </dependency> |
67 | 96 |
|
| 97 | + <!-- Annotation API --> |
| 98 | + <dependency> |
| 99 | + <groupId>javax.annotation</groupId> |
| 100 | + <artifactId>javax.annotation-api</artifactId> |
| 101 | + <version>1.3.2</version> |
| 102 | + <scope>provided</scope> |
| 103 | + </dependency> |
68 | 104 | </dependencies> |
69 | | - </dependencyManagement> |
70 | 105 |
|
71 | | - <repositories> |
72 | | - <repository> |
73 | | - <id>repo.jenkins-ci.org</id> |
74 | | - <url>https://repo.jenkins-ci.org/public/</url> |
75 | | - </repository> |
76 | | - </repositories> |
77 | | - <pluginRepositories> |
78 | | - <pluginRepository> |
79 | | - <id>repo.jenkins-ci.org</id> |
80 | | - <url>https://repo.jenkins-ci.org/public/</url> |
81 | | - </pluginRepository> |
82 | | - </pluginRepositories> |
| 106 | + <repositories> |
| 107 | + <repository> |
| 108 | + <id>repo.jenkins-ci.org</id> |
| 109 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 110 | + </repository> |
| 111 | + </repositories> |
| 112 | + <pluginRepositories> |
| 113 | + <pluginRepository> |
| 114 | + <id>repo.jenkins-ci.org</id> |
| 115 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 116 | + </pluginRepository> |
| 117 | + </pluginRepositories> |
83 | 118 | </project> |
0 commit comments