|
24 | 24 | <version>1.4.1</version>
|
25 | 25 | <packaging>bundle</packaging>
|
26 | 26 | <properties>
|
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
27 | 29 | <projectpath>json-schema</projectpath>
|
28 | 30 | <maven.compiler.source>1.8</maven.compiler.source>
|
29 | 31 | <maven.compiler.target>1.8</maven.compiler.target>
|
| 32 | + <jacoco.version>0.7.8</jacoco.version> |
30 | 33 | </properties>
|
31 | 34 | <name>everit-org/json-schema</name>
|
32 | 35 | <url>https://github.com/everit-org/json-schema</url>
|
|
71 | 74 | </instructions>
|
72 | 75 | </configuration>
|
73 | 76 | </plugin>
|
| 77 | + <plugin> |
| 78 | + <groupId>org.jacoco</groupId> |
| 79 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 80 | + <version>${jacoco.version}</version> |
| 81 | + <executions> |
| 82 | + <execution> |
| 83 | + <id>default-prepare-agent</id> |
| 84 | + <goals> |
| 85 | + <goal>prepare-agent</goal> |
| 86 | + </goals> |
| 87 | + <configuration> |
| 88 | + <propertyName>surefireArgLine</propertyName> |
| 89 | + </configuration> |
| 90 | + </execution> |
| 91 | + </executions> |
| 92 | + </plugin> |
| 93 | + <plugin> |
| 94 | + <artifactId>maven-surefire-plugin</artifactId> |
| 95 | + <groupId>org.apache.maven.plugins</groupId> |
| 96 | + <version>2.19.1</version> |
| 97 | + <configuration> |
| 98 | + <argLine>${surefireArgLine}</argLine> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.eluder.coveralls</groupId> |
| 103 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 104 | + <version>4.3.0</version> |
| 105 | + </plugin> |
74 | 106 | </plugins>
|
75 | 107 | </build>
|
76 | 108 | <dependencies>
|
|
104 | 136 | <dependency>
|
105 | 137 | <groupId>nl.jqno.equalsverifier</groupId>
|
106 | 138 | <artifactId>equalsverifier</artifactId>
|
107 |
| - <version>2.1.6</version> |
| 139 | + <version>2.1.8</version> |
108 | 140 | <scope>test</scope>
|
109 | 141 | </dependency>
|
110 | 142 | </dependencies>
|
|
0 commit comments