Skip to content

Commit e082fec

Browse files
committed
update pom, fix coveralls
1 parent bf1ef32 commit e082fec

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

library/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
<configuration>
142142
<format>xml</format>
143143
<maxmem>256m</maxmem>
144+
<aggregate>true</aggregate>
144145
</configuration>
145146
</plugin>
146147
<plugin>

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,35 @@
3434
<timezone>+8</timezone>
3535
</developer>
3636
</developers>
37+
38+
<profiles>
39+
<profile>
40+
<id>travis</id>
41+
<activation>
42+
<property>
43+
<name>env.TRAVIS</name>
44+
<value>true</value>
45+
</property>
46+
</activation>
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<groupId>org.codehaus.mojo</groupId>
51+
<artifactId>cobertura-maven-plugin</artifactId>
52+
<version>2.7</version>
53+
<configuration>
54+
<format>xml</format>
55+
<maxmem>256m</maxmem>
56+
<aggregate>true</aggregate>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.eluder.coveralls</groupId>
61+
<artifactId>coveralls-maven-plugin</artifactId>
62+
<version>3.1.0</version>
63+
</plugin>
64+
</plugins>
65+
</build>
66+
</profile>
67+
</profiles>
3768
</project>

tool/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,34 @@
7171
</build>
7272

7373
<profiles>
74+
<profile>
75+
<id>travis</id>
76+
<activation>
77+
<property>
78+
<name>env.TRAVIS</name>
79+
<value>true</value>
80+
</property>
81+
</activation>
82+
<build>
83+
<plugins>
84+
<plugin>
85+
<groupId>org.codehaus.mojo</groupId>
86+
<artifactId>cobertura-maven-plugin</artifactId>
87+
<version>2.7</version>
88+
<configuration>
89+
<format>xml</format>
90+
<maxmem>256m</maxmem>
91+
<aggregate>true</aggregate>
92+
</configuration>
93+
</plugin>
94+
<plugin>
95+
<groupId>org.eluder.coveralls</groupId>
96+
<artifactId>coveralls-maven-plugin</artifactId>
97+
<version>3.1.0</version>
98+
</plugin>
99+
</plugins>
100+
</build>
101+
</profile>
74102
<profile>
75103
<id>use-standard-tools-jar</id>
76104
<activation>

0 commit comments

Comments
 (0)