Skip to content

Commit 6241d92

Browse files
author
Thomas Fischer
committed
* bumped mvn-plugin versions,made build work with current Apache Maven 3.5.4
* added source encoding to make build independent of platform encoding
1 parent 07452da commit 6241d92

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

pom.xml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
<packaging>jar</packaging>
1010
<url>http://www.github.com/beowulfe/HAP-Java</url>
1111

12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
</properties>
15+
1216
<licenses>
1317
<license>
1418
<name>MIT License</name>
@@ -115,7 +119,7 @@
115119
<plugin>
116120
<groupId>org.apache.maven.plugins</groupId>
117121
<artifactId>maven-compiler-plugin</artifactId>
118-
<version>2.1</version>
122+
<version>3.8.0</version>
119123
<configuration>
120124
<source>1.8</source>
121125
<target>1.8</target>
@@ -124,7 +128,7 @@
124128
<plugin>
125129
<groupId>org.apache.maven.plugins</groupId>
126130
<artifactId>maven-source-plugin</artifactId>
127-
<version>2.2.1</version>
131+
<version>3.0.1</version>
128132
<executions>
129133
<execution>
130134
<id>attach-sources</id>
@@ -137,7 +141,7 @@
137141
<plugin>
138142
<groupId>org.apache.maven.plugins</groupId>
139143
<artifactId>maven-javadoc-plugin</artifactId>
140-
<version>2.10.1</version>
144+
<version>3.0.1</version>
141145
<configuration>
142146
<excludePackageNames>com.beowulfe.hap.impl</excludePackageNames>
143147
</configuration>
@@ -152,7 +156,7 @@
152156
</plugin>
153157
<plugin>
154158
<artifactId>maven-assembly-plugin</artifactId>
155-
<version>2.5.4</version>
159+
<version>3.1.0</version>
156160
<configuration>
157161
<descriptors>
158162
<descriptor>deploy/distribution.xml</descriptor>
@@ -171,7 +175,7 @@
171175
<plugin>
172176
<groupId>org.apache.maven.plugins</groupId>
173177
<artifactId>maven-scm-publish-plugin</artifactId>
174-
<version>1.1</version>
178+
<version>3.0.0</version>
175179
<executions>
176180
<execution>
177181
<id>scm-publish</id>
@@ -189,6 +193,7 @@
189193
<plugin>
190194
<groupId>org.apache.maven.plugins</groupId>
191195
<artifactId>maven-site-plugin</artifactId>
196+
<version>3.7.1</version>
192197
<executions>
193198
<execution>
194199
<id>stage-for-scm-publish</id>
@@ -243,7 +248,7 @@
243248
<plugin>
244249
<groupId>org.apache.maven.plugins</groupId>
245250
<artifactId>maven-javadoc-plugin</artifactId>
246-
<version>2.10.3</version>
251+
<version>3.0.1</version>
247252
<configuration>
248253
<excludePackageNames>com.beowulfe.hap.impl</excludePackageNames>
249254
</configuration>

0 commit comments

Comments
 (0)