|
1 | 1 | <?xml version="1.0"?>
|
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 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 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 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + |
3 | 5 | <modelVersion>4.0.0</modelVersion>
|
4 | 6 |
|
5 | 7 | <parent>
|
|
19 | 21 | <scala.major.version>2.11</scala.major.version>
|
20 | 22 | <scala.minor.version>12</scala.minor.version>
|
21 | 23 | <scala.version>${scala.major.version}.${scala.minor.version}</scala.version>
|
| 24 | + |
22 | 25 | <scalatest.version>3.0.1</scalatest.version>
|
23 | 26 | <scala.maven.plugin.version>4.3.0</scala.maven.plugin.version>
|
| 27 | + |
24 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
25 | 29 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
| 30 | + |
26 | 31 | <build.timestamp>${maven.build.timestamp}</build.timestamp>
|
27 | 32 | <maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
|
28 | 33 | <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
|
|
32 | 37 | <junit.version>4.12</junit.version>
|
33 | 38 | <maven.reporting.api.version>3.0</maven.reporting.api.version>
|
34 | 39 | <maven.enforcer.plugin.version>1.4.1</maven.enforcer.plugin.version>
|
35 |
| - <java.version>6</java.version> |
| 40 | + |
| 41 | + <java.version>8</java.version> |
36 | 42 | </properties>
|
37 | 43 |
|
38 | 44 | <licenses>
|
|
129 | 135 | </pluginManagement>
|
130 | 136 |
|
131 | 137 | <plugins>
|
132 |
| - |
133 |
| - <plugin> |
134 |
| - <groupId>org.apache.maven.plugins</groupId> |
135 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
136 |
| - <version>2.7</version> |
137 |
| - <configuration> |
138 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
139 |
| - </configuration> |
140 |
| - </plugin> |
141 |
| - |
142 | 138 | <plugin>
|
143 | 139 | <groupId>net.alchim31.maven</groupId>
|
144 | 140 | <artifactId>scala-maven-plugin</artifactId>
|
|
161 | 157 | <artifactId>maven-compiler-plugin</artifactId>
|
162 | 158 | <version>3.8.1</version>
|
163 | 159 | <configuration>
|
164 |
| - <source>1.${java.version}</source> |
165 |
| - <target>1.${java.version}</target> |
| 160 | + <source>${java.version}</source> |
| 161 | + <target>${java.version}</target> |
166 | 162 | </configuration>
|
167 | 163 | </plugin>
|
168 | 164 | <plugin>
|
|
194 | 190 | <pomIncludes>
|
195 | 191 | <pomInclude>lift/pom.xml</pomInclude>
|
196 | 192 | <pomInclude>spaces in path/pom.xml</pomInclude>
|
| 193 | + <pomInclude>redirect-output/pom.xml</pomInclude> |
197 | 194 | </pomIncludes>
|
198 | 195 | <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
199 | 196 | <streamLogs>true</streamLogs>
|
|
206 | 203 | </goals>
|
207 | 204 | </configuration>
|
208 | 205 | </plugin>
|
209 |
| - |
210 |
| - <plugin> |
211 |
| - <groupId>org.apache.maven.plugins</groupId> |
212 |
| - <artifactId>maven-gpg-plugin</artifactId> |
213 |
| - <version>${maven.gpg.plugin.version}</version> |
214 |
| - <executions> |
215 |
| - <execution> |
216 |
| - <id>sign-artifacts</id> |
217 |
| - <phase>verify</phase> |
218 |
| - <goals> |
219 |
| - <goal>sign</goal> |
220 |
| - </goals> |
221 |
| - </execution> |
222 |
| - </executions> |
223 |
| - </plugin> |
224 | 206 | <plugin>
|
225 | 207 | <groupId>org.apache.maven.plugins</groupId>
|
226 | 208 | <artifactId>maven-enforcer-plugin</artifactId>
|
|
245 | 227 | </plugins>
|
246 | 228 | </build>
|
247 | 229 |
|
248 |
| - <reporting> |
249 |
| - <plugins> |
250 |
| - <plugin> |
251 |
| - <groupId>org.apache.maven.plugins</groupId> |
252 |
| - <artifactId>maven-plugin-plugin</artifactId> |
253 |
| - <version>2.6</version> |
254 |
| - </plugin> |
255 |
| - <plugin> |
256 |
| - <groupId>org.codehaus.mojo</groupId> |
257 |
| - <artifactId>cobertura-maven-plugin</artifactId> |
258 |
| - <version>2.5.1</version> |
259 |
| - </plugin> |
260 |
| - <plugin> |
261 |
| - <groupId>org.apache.maven.plugins</groupId> |
262 |
| - <artifactId>maven-changes-plugin</artifactId> |
263 |
| - <version>2.6</version> |
264 |
| - <configuration> |
265 |
| - <filteringChanges>true</filteringChanges> |
266 |
| - </configuration> |
267 |
| - </plugin> |
268 |
| - <plugin> |
269 |
| - <groupId>org.apache.maven.plugins</groupId> |
270 |
| - <artifactId>maven-dependency-plugin</artifactId> |
271 |
| - <version>2.3</version> |
272 |
| - </plugin> |
273 |
| - <plugin> |
274 |
| - <groupId>org.apache.maven.plugins</groupId> |
275 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
276 |
| - <version>2.7</version> |
277 |
| - <configuration> |
278 |
| - <charset>UTF-8</charset> |
279 |
| - <docencoding>UTF-8</docencoding> |
280 |
| - <docfilessubdirs>true</docfilessubdirs> |
281 |
| - <show>package</show> |
282 |
| - <source>1.${java.version}</source> |
283 |
| - <detectLinks>true</detectLinks> |
284 |
| - </configuration> |
285 |
| - </plugin> |
286 |
| - <plugin> |
287 |
| - <groupId>org.apache.maven.plugins</groupId> |
288 |
| - <artifactId>maven-jxr-plugin</artifactId> |
289 |
| - <version>2.2</version> |
290 |
| - <configuration> |
291 |
| - <inputEncoding>UTF-8</inputEncoding> |
292 |
| - <outputEncoding>UTF-8</outputEncoding> |
293 |
| - </configuration> |
294 |
| - </plugin> |
295 |
| - <plugin> |
296 |
| - <groupId>org.apache.maven.plugins</groupId> |
297 |
| - <artifactId>maven-surefire-report-plugin</artifactId> |
298 |
| - <version>2.5</version> |
299 |
| - </plugin> |
300 |
| - </plugins> |
301 |
| - </reporting> |
| 230 | + <profiles> |
| 231 | + <profile> |
| 232 | + <id>release</id> |
| 233 | + <build> |
| 234 | + <plugins> |
| 235 | + <plugin> |
| 236 | + <groupId>org.apache.maven.plugins</groupId> |
| 237 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 238 | + <version>2.7</version> |
| 239 | + <configuration> |
| 240 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 241 | + </configuration> |
| 242 | + </plugin> |
| 243 | + <plugin> |
| 244 | + <groupId>org.apache.maven.plugins</groupId> |
| 245 | + <artifactId>maven-gpg-plugin</artifactId> |
| 246 | + <version>${maven.gpg.plugin.version}</version> |
| 247 | + <executions> |
| 248 | + <execution> |
| 249 | + <id>sign-artifacts</id> |
| 250 | + <phase>verify</phase> |
| 251 | + <goals> |
| 252 | + <goal>sign</goal> |
| 253 | + </goals> |
| 254 | + </execution> |
| 255 | + </executions> |
| 256 | + </plugin> |
| 257 | + </plugins> |
| 258 | + </build> |
| 259 | + <reporting> |
| 260 | + <plugins> |
| 261 | + <plugin> |
| 262 | + <groupId>org.apache.maven.plugins</groupId> |
| 263 | + <artifactId>maven-plugin-plugin</artifactId> |
| 264 | + <version>2.6</version> |
| 265 | + </plugin> |
| 266 | + <plugin> |
| 267 | + <groupId>org.codehaus.mojo</groupId> |
| 268 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 269 | + <version>2.5.1</version> |
| 270 | + </plugin> |
| 271 | + <plugin> |
| 272 | + <groupId>org.apache.maven.plugins</groupId> |
| 273 | + <artifactId>maven-changes-plugin</artifactId> |
| 274 | + <version>2.6</version> |
| 275 | + <configuration> |
| 276 | + <filteringChanges>true</filteringChanges> |
| 277 | + </configuration> |
| 278 | + </plugin> |
| 279 | + <plugin> |
| 280 | + <groupId>org.apache.maven.plugins</groupId> |
| 281 | + <artifactId>maven-dependency-plugin</artifactId> |
| 282 | + <version>2.3</version> |
| 283 | + </plugin> |
| 284 | + <plugin> |
| 285 | + <groupId>org.apache.maven.plugins</groupId> |
| 286 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 287 | + <version>2.7</version> |
| 288 | + <configuration> |
| 289 | + <charset>UTF-8</charset> |
| 290 | + <docencoding>UTF-8</docencoding> |
| 291 | + <docfilessubdirs>true</docfilessubdirs> |
| 292 | + <show>package</show> |
| 293 | + <source>${java.version}</source> |
| 294 | + <detectLinks>true</detectLinks> |
| 295 | + </configuration> |
| 296 | + </plugin> |
| 297 | + <plugin> |
| 298 | + <groupId>org.apache.maven.plugins</groupId> |
| 299 | + <artifactId>maven-jxr-plugin</artifactId> |
| 300 | + <version>2.2</version> |
| 301 | + <configuration> |
| 302 | + <inputEncoding>UTF-8</inputEncoding> |
| 303 | + <outputEncoding>UTF-8</outputEncoding> |
| 304 | + </configuration> |
| 305 | + </plugin> |
| 306 | + <plugin> |
| 307 | + <groupId>org.apache.maven.plugins</groupId> |
| 308 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 309 | + <version>2.5</version> |
| 310 | + </plugin> |
| 311 | + </plugins> |
| 312 | + </reporting> |
| 313 | + </profile> |
| 314 | + </profiles> |
302 | 315 | </project>
|
0 commit comments