Skip to content

Commit 330dcb6

Browse files
committed
Fixed #222
o Fixed WARNING about missing version for maven-install-plugin.
1 parent 49fb2af commit 330dcb6

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes
22

33
## Release 0.3.8 (NOT RELEASED YET)
4+
5+
* [Fixed Issue 222][issue-222]
6+
7+
Fixed WARNING during build.
48

59
* [Fixed Issue 220][issue-220]
610

@@ -953,6 +957,7 @@ TestReport testReport = mavenJob.getLastSuccessfulBuild().getTestReport();
953957
[issue-211]: https://github.com/jenkinsci/java-client-api/issues/211
954958
[issue-215]: https://github.com/jenkinsci/java-client-api/issues/215
955959
[issue-220]: https://github.com/jenkinsci/java-client-api/issues/220
960+
[issue-222]: https://github.com/jenkinsci/java-client-api/issues/222
956961
[pull-123]: https://github.com/jenkinsci/java-client-api/pull/123
957962
[pull-149]: https://github.com/jenkinsci/java-client-api/pull/149
958963
[pull-158]: https://github.com/jenkinsci/java-client-api/pull/158

pom.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,11 @@
274274
</archive>
275275
</configuration>
276276
</plugin>
277-
<plugin>
278-
<groupId>org.apache.maven.plugins</groupId>
279-
<artifactId>maven-compiler-plugin</artifactId>
280-
<version>3.6.0</version>
281-
</plugin>
277+
<plugin>
278+
<groupId>org.apache.maven.plugins</groupId>
279+
<artifactId>maven-compiler-plugin</artifactId>
280+
<version>3.6.0</version>
281+
</plugin>
282282
<!--
283283
! We define a newer version than in parent.
284284
-->
@@ -292,6 +292,11 @@
292292
<artifactId>maven-deploy-plugin</artifactId>
293293
<version>2.8.2</version>
294294
</plugin>
295+
<plugin>
296+
<groupId>org.apache.maven.plugins</groupId>
297+
<artifactId>maven-install-plugin</artifactId>
298+
<version>2.5.2</version>
299+
</plugin>
295300
<plugin>
296301
<groupId>org.apache.maven.plugins</groupId>
297302
<artifactId>maven-release-plugin</artifactId>

0 commit comments

Comments
 (0)