|
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" |
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> |
| 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> |
5 | 4 |
|
6 | | - <parent> |
7 | | - <groupId>org.jenkins-ci.plugins</groupId> |
8 | | - <artifactId>plugin</artifactId> |
9 | | - <version>5.28</version> |
10 | | - <relativePath/> |
11 | | - </parent> |
| 5 | + <parent> |
| 6 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 7 | + <artifactId>plugin</artifactId> |
| 8 | + <version>5.28</version> |
| 9 | + <relativePath /> |
| 10 | + </parent> |
12 | 11 |
|
13 | | - <groupId>io.jenkins.plugins</groupId> |
14 | | - <artifactId>vigilnz-security</artifactId> |
15 | | - <version>${revision}.${changelist}</version> |
16 | | - <packaging>hpi</packaging> |
| 12 | + <groupId>io.jenkins.plugins</groupId> |
| 13 | + <artifactId>vigilnz-security</artifactId> |
| 14 | + <version>${revision}.${changelist}</version> |
| 15 | + <packaging>hpi</packaging> |
17 | 16 |
|
18 | | - <!-- Plugin Name --> |
19 | | - <name>Vigilnz Security</name> |
20 | | - <description>Vigilnz Security Plugin integrates security scanning capabilities into Jenkins. Run CVE, SAST, SBOM, |
21 | | - and other security scans as part of your CI/CD pipeline. |
22 | | - </description> |
| 17 | + <!-- Plugin Name --> |
| 18 | + <name>Vigilnz Security</name> |
| 19 | + <description>Vigilnz Security Plugin integrates security scanning capabilities into Jenkins. Run CVE, SAST, SBOM, |
| 20 | + and other security scans as part of your CI/CD pipeline.</description> |
| 21 | + <url>https://github.com/${gitHubRepo}</url> |
| 22 | + <licenses> |
| 23 | + <license> |
| 24 | + <name>MIT License</name> |
| 25 | + <url>https://opensource.org/license/mit/</url> |
| 26 | + </license> |
| 27 | + </licenses> |
| 28 | + <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" 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>vigilnz-security-1.0</tag> |
23 | 32 | <url>https://github.com/${gitHubRepo}</url> |
24 | | - <licenses> |
25 | | - <license> |
26 | | - <name>MIT License</name> |
27 | | - <url>https://opensource.org/license/mit/</url> |
28 | | - </license> |
29 | | - </licenses> |
30 | | - <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" |
31 | | - child.scm.url.inherit.append.path="false"> |
32 | | - <connection>scm:git:https://github.com/${gitHubRepo}</connection> |
33 | | - <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection> |
34 | | - <tag>vigilnz-security-1.0</tag> |
35 | | - <url>https://github.com/${gitHubRepo}</url> |
36 | | - </scm> |
| 33 | + </scm> |
37 | 34 |
|
38 | | - <!-- <developers>--> |
39 | | - <!-- <developer>--> |
40 | | - <!-- <id>vigilnz</id>--> |
41 | | - <!-- <name>Vigilnz Team</name>--> |
42 | | - <!-- <email>[email protected]</email>--> |
43 | | - <!-- </developer>--> |
44 | | - <!-- </developers>--> |
| 35 | + <!-- <developers>--> |
| 36 | + <!-- <developer>--> |
| 37 | + <!-- <id>vigilnz</id>--> |
| 38 | + <!-- <name>Vigilnz Team</name>--> |
| 39 | + <!-- <email>[email protected]</email>--> |
| 40 | + <!-- </developer>--> |
| 41 | + <!-- </developers>--> |
45 | 42 |
|
46 | | - <properties> |
47 | | - <revision>1</revision> |
48 | | - <changelist>999999-SNAPSHOT</changelist> |
49 | | - <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
50 | | - <jenkins.baseline>2.516</jenkins.baseline> |
51 | | - <jenkins.version>${jenkins.baseline}.3</jenkins.version> |
52 | | - <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
| 43 | + <properties> |
| 44 | + <revision>1</revision> |
| 45 | + <changelist>999999-SNAPSHOT</changelist> |
| 46 | + <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
| 47 | + <jenkins.baseline>2.516</jenkins.baseline> |
| 48 | + <jenkins.version>${jenkins.baseline}.3</jenkins.version> |
| 49 | + <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
53 | 50 |
|
54 | | - <spotless.check.skip>false</spotless.check.skip> |
55 | | - <ban-junit4-imports.skip>false</ban-junit4-imports.skip> |
56 | | - <hpi.strictBundledArtifacts>true</hpi.strictBundledArtifacts> |
57 | | - </properties> |
58 | | - |
59 | | - <dependencyManagement> |
60 | | - <dependencies> |
61 | | - <dependency> |
62 | | - <groupId>io.jenkins.tools.bom</groupId> |
63 | | - <artifactId>bom-${jenkins.baseline}.x</artifactId> |
64 | | - <version>5774.v5c6d72f56a_61</version> |
65 | | - <type>pom</type> |
66 | | - <scope>import</scope> |
67 | | - </dependency> |
68 | | - </dependencies> |
69 | | - </dependencyManagement> |
| 51 | + <spotless.check.skip>false</spotless.check.skip> |
| 52 | + <ban-junit4-imports.skip>false</ban-junit4-imports.skip> |
| 53 | + <hpi.strictBundledArtifacts>true</hpi.strictBundledArtifacts> |
| 54 | + </properties> |
70 | 55 |
|
| 56 | + <dependencyManagement> |
71 | 57 | <dependencies> |
| 58 | + <dependency> |
| 59 | + <groupId>io.jenkins.tools.bom</groupId> |
| 60 | + <artifactId>bom-${jenkins.baseline}.x</artifactId> |
| 61 | + <version>5774.v5c6d72f56a_61</version> |
| 62 | + <type>pom</type> |
| 63 | + <scope>import</scope> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | + </dependencyManagement> |
72 | 67 |
|
73 | | - <!-- Credentials plugin --> |
74 | | - <dependency> |
75 | | - <groupId>org.jenkins-ci.plugins</groupId> |
76 | | - <artifactId>credentials</artifactId> |
77 | | - </dependency> |
| 68 | + <dependencies> |
78 | 69 |
|
79 | | - <dependency> |
80 | | - <groupId>org.jenkins-ci.plugins</groupId> |
81 | | - <artifactId>jackson2-api</artifactId> |
82 | | - </dependency> |
| 70 | + <!-- Credentials plugin --> |
| 71 | + <dependency> |
| 72 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 73 | + <artifactId>credentials</artifactId> |
| 74 | + </dependency> |
83 | 75 |
|
84 | | - <dependency> |
85 | | - <groupId>org.jenkins-ci.plugins</groupId> |
86 | | - <artifactId>plain-credentials</artifactId> |
87 | | - </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 78 | + <artifactId>jackson2-api</artifactId> |
| 79 | + </dependency> |
88 | 80 |
|
89 | | - <!-- Pipeline API --> |
90 | | - <dependency> |
91 | | - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
92 | | - <artifactId>workflow-api</artifactId> |
93 | | - </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 83 | + <artifactId>plain-credentials</artifactId> |
| 84 | + </dependency> |
94 | 85 |
|
95 | | - <!-- Pipeline Step API --> |
96 | | - <dependency> |
97 | | - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
98 | | - <artifactId>workflow-step-api</artifactId> |
99 | | - </dependency> |
| 86 | + <!-- Pipeline API --> |
| 87 | + <dependency> |
| 88 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 89 | + <artifactId>workflow-api</artifactId> |
| 90 | + </dependency> |
100 | 91 |
|
101 | | - </dependencies> |
| 92 | + <!-- Pipeline Step API --> |
| 93 | + <dependency> |
| 94 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 95 | + <artifactId>workflow-step-api</artifactId> |
| 96 | + </dependency> |
| 97 | + |
| 98 | + </dependencies> |
102 | 99 |
|
103 | | - <repositories> |
104 | | - <repository> |
105 | | - <id>repo.jenkins-ci.org</id> |
106 | | - <url>https://repo.jenkins-ci.org/public/</url> |
107 | | - </repository> |
108 | | - </repositories> |
109 | | - <pluginRepositories> |
110 | | - <pluginRepository> |
111 | | - <id>repo.jenkins-ci.org</id> |
112 | | - <url>https://repo.jenkins-ci.org/public/</url> |
113 | | - </pluginRepository> |
114 | | - </pluginRepositories> |
| 100 | + <repositories> |
| 101 | + <repository> |
| 102 | + <id>repo.jenkins-ci.org</id> |
| 103 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 104 | + </repository> |
| 105 | + </repositories> |
| 106 | + <pluginRepositories> |
| 107 | + <pluginRepository> |
| 108 | + <id>repo.jenkins-ci.org</id> |
| 109 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 110 | + </pluginRepository> |
| 111 | + </pluginRepositories> |
115 | 112 | </project> |
0 commit comments