forked from nbaars/paseto4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
33 lines (30 loc) · 982 Bytes
/
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
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.nbaars</groupId>
<artifactId>paseto4j</artifactId>
<version>0.0.31-SNAPSHOT</version>
</parent>
<artifactId>paseto4j-commons</artifactId>
<packaging>jar</packaging>
<name>paseto4j-commons</name>
<properties>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>