|
44 | 44 | <maven-jar-plugin.version>2.4</maven-jar-plugin.version>
|
45 | 45 | <maven-release-plugin.version>2.5.1</maven-release-plugin.version>
|
46 | 46 | <maven-resources-plugin.version>2.6</maven-resources-plugin.version>
|
47 |
| - <maven-jacoco-plugin.version>0.7.5.201505241946 |
48 |
| - </maven-jacoco-plugin.version> |
| 47 | + <maven-jacoco-plugin.version>0.7.5.201505241946</maven-jacoco-plugin.version> |
49 | 48 | <maven-coveralls-plugin.version>4.0.0</maven-coveralls-plugin.version>
|
| 49 | + |
| 50 | + <github.global.server>github</github.global.server> |
50 | 51 | </properties>
|
51 | 52 |
|
52 | 53 | <dependencies>
|
|
258 | 259 | </execution>
|
259 | 260 | </executions>
|
260 | 261 | </plugin>
|
261 |
| - |
262 |
| - <plugin> |
263 |
| - <artifactId>maven-surefire-plugin</artifactId> |
264 |
| - </plugin> |
265 | 262 | <plugin>
|
266 | 263 | <groupId>org.jacoco</groupId>
|
267 | 264 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
293 | 290 | <argLine>${argLine}</argLine>
|
294 | 291 | </configuration>
|
295 | 292 | </plugin>
|
| 293 | + <plugin> |
| 294 | + <artifactId>maven-deploy-plugin</artifactId> |
| 295 | + <version>2.8.1</version> |
| 296 | + </plugin> |
| 297 | + <plugin> |
| 298 | + <groupId>com.github.github</groupId> |
| 299 | + <artifactId>site-maven-plugin</artifactId> |
| 300 | + <version>0.12</version> |
| 301 | + <configuration> |
| 302 | + <merge>true</merge> |
| 303 | + <message>Maven artifacts for ${project.artifactId} ${project.version}</message> |
| 304 | + <noJekyll>true</noJekyll> |
| 305 | + <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> |
| 306 | + <branch>refs/heads/master</branch> |
| 307 | + <includes> |
| 308 | + <include>**/*</include> |
| 309 | + </includes> |
| 310 | + <repositoryName>maven-repository</repositoryName> |
| 311 | + <repositoryOwner>tdurieux</repositoryOwner> |
| 312 | + </configuration> |
| 313 | + <executions> |
| 314 | + <execution> |
| 315 | + <goals> |
| 316 | + <goal>site</goal> |
| 317 | + </goals> |
| 318 | + <phase>deploy</phase> |
| 319 | + </execution> |
| 320 | + </executions> |
| 321 | + </plugin> |
296 | 322 | </plugins>
|
297 | 323 | <pluginManagement>
|
298 | 324 | <plugins>
|
|
400 | 426 | </repository>
|
401 | 427 | </repositories>
|
402 | 428 |
|
| 429 | + <distributionManagement> |
| 430 | + <repository> |
| 431 | + <id>internal-repo</id> |
| 432 | + <name>Temporary Staging Repository</name> |
| 433 | + <url>file://${project.build.directory}/mvn-repo/releases</url> |
| 434 | + </repository> |
| 435 | + <snapshotRepository> |
| 436 | + <id>internal-snapshot-repo</id> |
| 437 | + <name>Temporary Staging Snapshot Repository</name> |
| 438 | + <url>file://${project.build.directory}/mvn-repo/snapshots</url> |
| 439 | + </snapshotRepository> |
| 440 | + </distributionManagement> |
| 441 | + |
403 | 442 | </project>
|
0 commit comments