Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit ff83178

Browse files
committed
Tried to fix coverall plugin.
1 parent 99edcfc commit ff83178

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

pom.xml

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<artifactId>moneta-bp</artifactId>
2626
<version>1.0</version>
2727
<packaging>bundle</packaging>
28-
28+
2929
<name>Moneta (JSR 354 RI) for Java 7</name>
3030

3131
<description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with
@@ -380,4 +380,52 @@
380380
</plugins>
381381
</reporting>
382382

383+
<profiles>
384+
<profile>
385+
<id>travis</id>
386+
<activation>
387+
<property>
388+
<name>env.TRAVIS</name>
389+
<value>true</value>
390+
</property>
391+
</activation>
392+
<build>
393+
<plugins>
394+
<plugin>
395+
<groupId>org.jacoco</groupId>
396+
<artifactId>jacoco-maven-plugin</artifactId>
397+
</plugin>
398+
<plugin>
399+
<groupId>org.eluder.coveralls</groupId>
400+
<artifactId>coveralls-maven-plugin</artifactId>
401+
</plugin>
402+
<plugin>
403+
<groupId>org.apache.maven.plugins</groupId>
404+
<artifactId>maven-javadoc-plugin</artifactId>
405+
<executions>
406+
<execution>
407+
<id>attach-javadocs</id>
408+
<goals>
409+
<goal>jar</goal>
410+
</goals>
411+
</execution>
412+
</executions>
413+
</plugin>
414+
<plugin>
415+
<groupId>org.apache.maven.plugins</groupId>
416+
<artifactId>maven-source-plugin</artifactId>
417+
<executions>
418+
<execution>
419+
<id>attach-sources</id>
420+
<goals>
421+
<goal>jar</goal>
422+
</goals>
423+
</execution>
424+
</executions>
425+
</plugin>
426+
</plugins>
427+
</build>
428+
</profile>
429+
</profiles>
430+
383431
</project>

0 commit comments

Comments
 (0)