Skip to content

Commit 4c316b0

Browse files
committed
Cleanup
1 parent 019c9a7 commit 4c316b0

1 file changed

Lines changed: 75 additions & 1 deletion

File tree

pom.xml

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,87 @@
88
<artifactId>jquantify</artifactId>
99
<version>4.1.2</version>
1010

11+
<scm>
12+
<developerConnection>https://github.com/BerryWorksSoftware/jquantify.git</developerConnection>
13+
</scm>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<maven.compiler.plugin.version>3.2</maven.compiler.plugin.version>
18+
<maven.jar.plugin.version>2.5</maven.jar.plugin.version>
19+
<maven.release.plugin.version>2.5.1</maven.release.plugin.version>
20+
<maven.javadoc.plugin.version>2.10.1</maven.javadoc.plugin.version>
21+
<maven.surefire.plugin.version>2.12</maven.surefire.plugin.version>
22+
<maven.surefire.report.plugin.version>2.18.1</maven.surefire.report.plugin.version>
23+
<maven.project.info.reports.plugin.version>2.8</maven.project.info.reports.plugin.version>
24+
<junit.version>4.12</junit.version>
25+
</properties>
26+
1127
<dependencies>
1228
<dependency>
1329
<groupId>junit</groupId>
1430
<artifactId>junit</artifactId>
15-
<version>4.8.1</version>
31+
<version>${junit.version}</version>
1632
<scope>test</scope>
1733
</dependency>
1834
</dependencies>
1935

36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>${maven.compiler.plugin.version}</version>
42+
<configuration>
43+
<source>1.7</source>
44+
<target>1.7</target>
45+
</configuration>
46+
</plugin>
47+
<plugin>
48+
<groupId>org.apache.maven.plugins</groupId>
49+
<artifactId>maven-jar-plugin</artifactId>
50+
<version>${maven.jar.plugin.version}</version>
51+
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-surefire-plugin</artifactId>
55+
<version>${maven.surefire.plugin.version}</version>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-release-plugin</artifactId>
60+
<version>${maven.release.plugin.version}</version>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.jacoco</groupId>
64+
<artifactId>jacoco-maven-plugin</artifactId>
65+
<version>0.7.4.201502262128</version>
66+
<executions>
67+
<execution>
68+
<id>pre-unit-test</id>
69+
<goals>
70+
<goal>prepare-agent</goal>
71+
</goals>
72+
<configuration>
73+
<destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
74+
<propertyName>surefireArgLine</propertyName>
75+
</configuration>
76+
</execution>
77+
<execution>
78+
<id>post-unit-test</id>
79+
<phase>test</phase>
80+
<goals>
81+
<goal>report</goal>
82+
</goals>
83+
<configuration>
84+
<dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
85+
<outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
86+
</configuration>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
</plugins>
91+
</build>
92+
93+
2094
</project>

0 commit comments

Comments
 (0)