-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
60 lines (60 loc) · 1.96 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>corporate-pom</artifactId>
<groupId>com.danieltoms</groupId>
<version>1.0-SNAPSHOT</version>
<relativePath>corporate/pom.xml</relativePath>
</parent>
<groupId>com.danieltoms.junit</groupId>
<artifactId>junit-examples-modules</artifactId>
<!-- intentionally overriding corporate pom version to decouple -->
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>junit-examples</name>
<url>http://maven.apache.org</url>
<modules>
<module>junit-execution-order</module>
</modules>
<scm>
<connection>scm:git:git://https://github.com/dtoms/junit-examples</connection>
<developerConnection>scm:git:[email protected]/dtoms/junit-examples</developerConnection>
<url>https://github.com/dtoms/junit-examples</url>
</scm>
<distributionManagement>
<site>
<id>site</id>
<name>site</name>
<url>http://pages.github.com/dtoms/junit-examples</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.8</version>
<configuration>
<message>Travis #${env.TRAVIS_JOB_ID} build ${project.name}
${project.version}</message>
<outputDirectory>${project.build.directory}/staging</outputDirectory>
<dryRun>false</dryRun>
</configuration>
</plugin>
</plugins>
</build>
</project>