-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
47 lines (44 loc) · 1.21 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
<project>
<modelVersion>4.0.0</modelVersion>
<name>Cyptonit Applet</name>
<groupId>org.cryptonit</groupId>
<artifactId>cryptonit-applet</artifactId>
<version>1.0</version>
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
<repository>
<id>typesafe</id>
<name>typesafe</name>
<url>https://bintray.com/typesafe</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.codacy</groupId>
<artifactId>codacy-coverage-reporter</artifactId>
<version>1.0.13</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<mainClass>com.codacy.CodacyCoverageReporter</mainClass>
<arguments>
<argument>--language</argument>
<argument>Java</argument>
<argument>--coverageReport</argument>
<argument>jacoco/report.xml</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>