|
29 | 29 | <parent>
|
30 | 30 | <groupId>org.jenkins-ci.plugins</groupId>
|
31 | 31 | <artifactId>plugin</artifactId>
|
32 |
| - <version>1.609.1</version> |
| 32 | + <version>2.3</version> |
33 | 33 | </parent>
|
34 | 34 |
|
35 | 35 | <artifactId>ssh-agent</artifactId>
|
|
65 | 65 | </scm>
|
66 | 66 |
|
67 | 67 | <properties>
|
68 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
69 |
| - <project.build.outputEncoding>UTF-8</project.build.outputEncoding> |
70 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
71 |
| - <findbugs-maven-plugin.version>3.0.1</findbugs-maven-plugin.version> |
72 |
| - <findbugs.failOnError>true</findbugs.failOnError> |
| 68 | + <jenkins.version>1.609.3</jenkins.version> |
| 69 | + <java.level>7</java.level> <!-- sshd-core is 7+ --> |
73 | 70 | <workflow-jenkins-plugin.version>1.9</workflow-jenkins-plugin.version>
|
74 | 71 | </properties>
|
75 | 72 |
|
|
120 | 117 | <artifactId>jnr-unixsocket-nodep</artifactId>
|
121 | 118 | <version>0.3.1</version>
|
122 | 119 | </dependency>
|
123 |
| - <dependency> |
124 |
| - <groupId>com.google.code.findbugs</groupId> |
125 |
| - <artifactId>annotations</artifactId> |
126 |
| - <version>3.0.0</version> |
127 |
| - <scope>provided</scope> |
128 |
| - </dependency> |
129 | 120 | <dependency>
|
130 | 121 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
131 | 122 | <artifactId>workflow-step-api</artifactId>
|
|
176 | 167 | <classifier>tests</classifier>
|
177 | 168 | <scope>test</scope>
|
178 | 169 | </dependency>
|
| 170 | + <dependency> <!-- TODO Jenkins sshd (1.6) depends on sshd-core 0.8, which is incompatible with 1.0 --> |
| 171 | + <groupId>org.jenkins-ci.main</groupId> |
| 172 | + <artifactId>jenkins-war</artifactId> |
| 173 | + <version>${jenkins.version}</version> |
| 174 | + <classifier>war-for-test</classifier> |
| 175 | + <scope>test</scope> |
| 176 | + <exclusions> |
| 177 | + <exclusion> |
| 178 | + <groupId>org.jenkins-ci.modules</groupId> |
| 179 | + <artifactId>sshd</artifactId> |
| 180 | + </exclusion> |
| 181 | + </exclusions> |
| 182 | + </dependency> |
179 | 183 | </dependencies>
|
180 | 184 |
|
181 | 185 | <build>
|
182 |
| - <pluginManagement> |
183 |
| - <plugins> |
184 |
| - <plugin> |
185 |
| - <artifactId>maven-enforcer-plugin</artifactId> |
186 |
| - <version>1.0.1</version> |
187 |
| - <executions> |
188 |
| - <execution> |
189 |
| - <id>enforce-maven</id> |
190 |
| - <goals> |
191 |
| - <goal>enforce</goal> |
192 |
| - </goals> |
193 |
| - <configuration> |
194 |
| - <rules> |
195 |
| - <requireMavenVersion> |
196 |
| - <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version> |
197 |
| - <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. |
198 |
| - </message> |
199 |
| - </requireMavenVersion> |
200 |
| - <requireMavenVersion> |
201 |
| - <version>(,3.0),[3.0.4,)</version> |
202 |
| - <message>Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin</message> |
203 |
| - </requireMavenVersion> |
204 |
| - </rules> |
205 |
| - </configuration> |
206 |
| - </execution> |
207 |
| - </executions> |
208 |
| - </plugin> |
209 |
| - </plugins> |
210 |
| - </pluginManagement> |
211 | 186 | <plugins>
|
212 |
| - <plugin> |
213 |
| - <artifactId>maven-release-plugin</artifactId> |
214 |
| - <version>2.5.1</version> |
215 |
| - </plugin> |
216 | 187 | <plugin>
|
217 | 188 | <groupId>org.jenkins-ci.tools</groupId>
|
218 | 189 | <artifactId>maven-hpi-plugin</artifactId>
|
|
222 | 193 | <compatibleSinceVersion>1.5</compatibleSinceVersion>
|
223 | 194 | </configuration>
|
224 | 195 | </plugin>
|
225 |
| - <plugin> |
226 |
| - <groupId>org.codehaus.mojo</groupId> |
227 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
228 |
| - <version>${findbugs-maven-plugin.version}</version> |
229 |
| - <configuration> |
230 |
| - <excludeFilterFile>src/findbugs/excludesFilter.xml</excludeFilterFile> |
231 |
| - <failOnError>${findbugs.failOnError}</failOnError> |
232 |
| - <xmlOutput>true</xmlOutput> |
233 |
| - <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
234 |
| - </configuration> |
235 |
| - <executions> |
236 |
| - <execution> |
237 |
| - <phase>verify</phase> |
238 |
| - <goals> |
239 |
| - <goal>check</goal> |
240 |
| - </goals> |
241 |
| - </execution> |
242 |
| - </executions> |
243 |
| - </plugin> |
244 | 196 | </plugins>
|
245 | 197 | </build>
|
246 | 198 |
|
|
0 commit comments