|
5 | 5 | <parent> |
6 | 6 | <groupId>org.jenkins-ci.plugins</groupId> |
7 | 7 | <artifactId>plugin</artifactId> |
8 | | - <version>4.37</version> |
| 8 | + <version>4.40</version> |
9 | 9 | <relativePath /> |
10 | 10 | </parent> |
11 | 11 |
|
|
34 | 34 | <properties> |
35 | 35 | <revision>1.21</revision> |
36 | 36 | <changelist>-SNAPSHOT</changelist> |
37 | | - <jenkins.version>2.332.1</jenkins.version> |
| 37 | + <jenkins.version>2.332.3</jenkins.version> |
38 | 38 | <java.level>8</java.level> |
39 | 39 | <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
40 | 40 | <!-- To be removed once Jenkins.MANAGE permission gets out of beta --> |
41 | 41 | <useBeta>true</useBeta> |
| 42 | + <maven.version>3.8.5</maven.version> |
42 | 43 | <junit.version>5.8.2</junit.version> |
43 | 44 | <mockito.version>4.3.1</mockito.version> |
44 | 45 | <junit-platform-launcher.version>1.8.2</junit-platform-launcher.version> |
45 | | - <assertj.version>3.22.0</assertj.version> |
46 | | - <archunit.version>0.22.0</archunit.version> |
47 | | - <json-unit-fluent.version>2.31.0</json-unit-fluent.version> |
48 | | - <equalsverifier.version>3.9</equalsverifier.version> |
49 | 46 | </properties> |
50 | 47 |
|
51 | 48 | <build> |
52 | 49 | <plugins> |
53 | 50 | <plugin> |
54 | 51 | <groupId>org.apache.maven.plugins</groupId> |
55 | 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | + <version>3.10.1</version> |
56 | 54 | <configuration> |
57 | | - <!-- Start for debugging --> |
| 55 | + <source>1.8</source> |
| 56 | + <target>1.8</target> |
| 57 | +<!-- <compilerVersion>1.8</compilerVersion>--> |
| 58 | + <!-- Start of logging for debugging --> |
58 | 59 | <!-- Please feel free to uncomment during debugging --> |
59 | 60 | <showDeprecation>true</showDeprecation> |
60 | 61 | <showWarnings>true</showWarnings> |
61 | 62 | <forceJavacCompilerUse>true</forceJavacCompilerUse> |
62 | | - <!-- End for debugging --> |
| 63 | + <!-- End of logging for debugging --> |
63 | 64 | </configuration> |
64 | 65 | </plugin> |
65 | 66 | </plugins> |
|
69 | 70 | <dependencies> |
70 | 71 | <dependency> |
71 | 72 | <groupId>io.jenkins.tools.bom</groupId> |
72 | | - <artifactId>bom-2.303.x</artifactId> |
73 | | - <version>1198.v387c834fca_1a_</version> |
| 73 | + <artifactId>bom-2.332.x</artifactId> |
| 74 | + <version>1382.v7d694476f340</version> |
| 75 | + <type>pom</type> |
| 76 | + <scope>import</scope> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.junit</groupId> |
| 80 | + <artifactId>junit-bom</artifactId> |
| 81 | + <version>${junit.version}</version> |
| 82 | + <type>pom</type> |
| 83 | + <scope>import</scope> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.mockito</groupId> |
| 87 | + <artifactId>mockito-bom</artifactId> |
| 88 | + <version>${mockito.version}</version> |
74 | 89 | <type>pom</type> |
75 | 90 | <scope>import</scope> |
76 | 91 | </dependency> |
|
80 | 95 | <dependencies> |
81 | 96 | <dependency> |
82 | 97 | <groupId>org.jenkins-ci.plugins</groupId> |
83 | | - <artifactId>naginator</artifactId> |
84 | | - <version>1.18.1</version> |
85 | | - <optional>true</optional> |
86 | | - </dependency> |
87 | | - <dependency> |
88 | | - <!-- Required by Naginator as a dependency --> |
89 | | - <groupId>org.jenkins-ci.plugins</groupId> |
90 | | - <artifactId>matrix-project</artifactId> |
91 | | - <scope>test</scope> |
| 98 | + <artifactId>token-macro</artifactId> |
92 | 99 | </dependency> |
93 | 100 | <dependency> |
94 | 101 | <groupId>org.jenkins-ci.plugins</groupId> |
95 | | - <artifactId>junit</artifactId> |
96 | | - <scope>test</scope> |
| 102 | + <artifactId>naginator</artifactId> |
| 103 | + <version>1.18.1</version> |
| 104 | + <optional>true</optional> |
97 | 105 | </dependency> |
| 106 | + |
98 | 107 | <dependency> |
99 | | - <groupId>nl.jqno.equalsverifier</groupId> |
100 | | - <artifactId>equalsverifier</artifactId> |
101 | | - <version>${equalsverifier.version}</version> |
| 108 | + <groupId>org.mockito</groupId> |
| 109 | + <artifactId>mockito-core</artifactId> |
102 | 110 | <scope>test</scope> |
103 | 111 | </dependency> |
104 | 112 | <dependency> |
105 | 113 | <groupId>org.junit.jupiter</groupId> |
106 | 114 | <artifactId>junit-jupiter-api</artifactId> |
107 | | - <version>${junit.version}</version> |
108 | 115 | <scope>test</scope> |
109 | 116 | </dependency> |
110 | 117 | <dependency> |
111 | 118 | <groupId>org.junit.jupiter</groupId> |
112 | 119 | <artifactId>junit-jupiter-engine</artifactId> |
113 | | - <version>${junit.version}</version> |
114 | 120 | <scope>test</scope> |
115 | 121 | </dependency> |
116 | 122 | <dependency> |
117 | 123 | <groupId>org.junit.vintage</groupId> |
118 | 124 | <artifactId>junit-vintage-engine</artifactId> |
119 | | - <version>${junit.version}</version> |
120 | | - <scope>test</scope> |
121 | | - </dependency> |
122 | | - <dependency> |
123 | | - <groupId>org.junit.platform</groupId> |
124 | | - <artifactId>junit-platform-launcher</artifactId> |
125 | | - <version>${junit-platform-launcher.version}</version> |
126 | | - <scope>test</scope> |
127 | | - </dependency> |
128 | | - <dependency> |
129 | | - <groupId>org.junit.jupiter</groupId> |
130 | | - <artifactId>junit-jupiter-params</artifactId> |
131 | | - <version>${junit.version}</version> |
132 | | - <scope>test</scope> |
133 | | - </dependency> |
134 | | - <dependency> |
135 | | - <groupId>junit</groupId> |
136 | | - <artifactId>junit</artifactId> |
137 | | - <version>4.13.2</version> |
138 | | - <scope>test</scope> |
139 | | - </dependency> |
140 | | - <dependency> |
141 | | - <groupId>org.mockito</groupId> |
142 | | - <artifactId>mockito-core</artifactId> |
143 | | - <version>${mockito.version}</version> |
144 | | - <scope>test</scope> |
145 | | - </dependency> |
146 | | - <dependency> |
147 | | - <groupId>org.mockito</groupId> |
148 | | - <artifactId>mockito-inline</artifactId> |
149 | | - <version>${mockito.version}</version> |
150 | 125 | <scope>test</scope> |
151 | 126 | </dependency> |
152 | | - <dependency> |
153 | | - <groupId>org.mockito</groupId> |
154 | | - <artifactId>mockito-junit-jupiter</artifactId> |
155 | | - <version>${mockito.version}</version> |
156 | | - <scope>test</scope> |
157 | | - </dependency> |
158 | | - <dependency> |
159 | | - <groupId>org.assertj</groupId> |
160 | | - <artifactId>assertj-core</artifactId> |
161 | | - <version>${assertj.version}</version> |
162 | | - <scope>test</scope> |
163 | | - </dependency> |
164 | | - <dependency> |
165 | | - <groupId>com.tngtech.archunit</groupId> |
166 | | - <artifactId>archunit-junit5</artifactId> |
167 | | - <version>${archunit.version}</version> |
168 | | - <scope>test</scope> |
169 | | - </dependency> |
170 | | - <dependency> |
171 | | - <groupId>net.javacrumbs.json-unit</groupId> |
172 | | - <artifactId>json-unit-assertj</artifactId> |
173 | | - <version>${json-unit-fluent.version}</version> |
174 | | - <scope>test</scope> |
175 | | - <exclusions> |
176 | | - <exclusion> |
177 | | - <groupId>org.ow2.asm</groupId> |
178 | | - <artifactId>asm</artifactId> |
179 | | - </exclusion> |
180 | | - </exclusions> |
181 | | - </dependency> |
182 | | - |
183 | | - <dependency> |
184 | | - <groupId>org.objenesis</groupId> |
185 | | - <artifactId>objenesis</artifactId> |
186 | | - <version>3.2</version> |
187 | | - <scope>test</scope> |
188 | | - </dependency> |
189 | | - <dependency> |
190 | | - <groupId>org.mockito</groupId> |
191 | | - <artifactId>mockito-core</artifactId> |
192 | | - <scope>test</scope> |
193 | | - </dependency> |
194 | | - <dependency> |
195 | | - <groupId>org.jenkins-ci.plugins</groupId> |
196 | | - <artifactId>script-security</artifactId> |
197 | | - </dependency> |
198 | | - <dependency> |
199 | | - <groupId>org.jenkins-ci.plugins</groupId> |
200 | | - <artifactId>mailer</artifactId> |
201 | | - </dependency> |
202 | | - <dependency> |
203 | | - <groupId>org.jenkins-ci.plugins</groupId> |
204 | | - <artifactId>token-macro</artifactId> |
205 | | - </dependency> |
206 | | - <dependency> |
207 | | - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
208 | | - <artifactId>workflow-step-api</artifactId> |
209 | | - </dependency> |
210 | | - <dependency> |
211 | | - <groupId>org.jenkins-ci.plugins</groupId> |
212 | | - <artifactId>structs</artifactId> |
213 | | - </dependency> |
214 | 127 | </dependencies> |
215 | 128 |
|
216 | 129 | <repositories> |
217 | 130 | <repository> |
218 | 131 | <id>repo.jenkins-ci.org</id> |
219 | 132 | <url>https://repo.jenkins-ci.org/public/</url> |
220 | 133 | </repository> |
| 134 | + <repository> |
| 135 | + <!-- Required for using incremental versions of dependencies --> |
| 136 | + <!-- Please do not remove --> |
| 137 | + <id>repo.jenkins-ci.org.incrementals</id> |
| 138 | + <url>https://repo.jenkins-ci.org/incrementals/</url> |
| 139 | + </repository> |
221 | 140 | </repositories> |
222 | 141 | <pluginRepositories> |
223 | 142 | <pluginRepository> |
224 | 143 | <id>repo.jenkins-ci.org</id> |
225 | 144 | <url>https://repo.jenkins-ci.org/public/</url> |
226 | 145 | </pluginRepository> |
| 146 | + <pluginRepository> |
| 147 | + <!-- Required for using incremental versions of dependencies --> |
| 148 | + <!-- Please do not remove --> |
| 149 | + <id>repo.jenkins-ci.org.incrementals</id> |
| 150 | + <url>https://repo.jenkins-ci.org/incrementals/</url> |
| 151 | + </pluginRepository> |
227 | 152 | </pluginRepositories> |
228 | 153 | </project> |
0 commit comments