|
70 | 70 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
71 | 71 | <jdk.version>1.6</jdk.version> |
72 | 72 |
|
73 | | - <!-- libraries. --> |
74 | | - <gson.version>2.6.2</gson.version> |
75 | | - <jsr305.version>3.0.1</jsr305.version> |
76 | | - <junit.version>4.12</junit.version> |
77 | | - <log4j.version>1.2.17</log4j.version> |
78 | | - <slf4j.version>1.7.21</slf4j.version> |
| 73 | + <!-- Repo token for Coveralls. --> |
| 74 | + <coveralls-maven-plugin.repoToken>lq77rzORtJmhhqs4MWED6qPzVi0IEqrf9</coveralls-maven-plugin.repoToken> |
79 | 75 |
|
80 | 76 | <!-- Modules. --> |
81 | 77 | <nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version> |
| 78 | + <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version> |
| 79 | + <coveralls-maven-plugin.version>4.2.0</coveralls-maven-plugin.version> |
82 | 80 | <maven-source-plugin.version>3.0.0</maven-source-plugin.version> |
83 | 81 | <maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version> |
84 | 82 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
85 | 83 | <maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> |
| 84 | + |
| 85 | + <!-- libraries. --> |
| 86 | + <gson.version>2.6.2</gson.version> |
| 87 | + <jsr305.version>3.0.1</jsr305.version> |
| 88 | + <junit.version>4.12</junit.version> |
| 89 | + <log4j.version>1.2.17</log4j.version> |
| 90 | + <slf4j.version>1.7.21</slf4j.version> |
86 | 91 | </properties> |
87 | 92 |
|
88 | 93 | <distributionManagement> |
|
94 | 99 |
|
95 | 100 | <build> |
96 | 101 | <plugins> |
| 102 | + <plugin> |
| 103 | + <groupId>org.codehaus.mojo</groupId> |
| 104 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 105 | + <version>${cobertura-maven-plugin.version}</version> |
| 106 | + <configuration> |
| 107 | + <instrumentation> |
| 108 | + <ignores> |
| 109 | + <ignore>com.tomtom.speedtools.*</ignore> |
| 110 | + </ignores> |
| 111 | + </instrumentation> |
| 112 | + <check> |
| 113 | + </check> |
| 114 | + <formats> |
| 115 | + <format>xml</format> |
| 116 | + <format>html</format> |
| 117 | + </formats> |
| 118 | + <maxmem>256m</maxmem> |
| 119 | + <aggregate>true</aggregate> |
| 120 | + </configuration> |
| 121 | + </plugin> |
| 122 | + |
| 123 | + <plugin> |
| 124 | + <groupId>org.eluder.coveralls</groupId> |
| 125 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 126 | + <version>${coveralls-maven-plugin.version}</version> |
| 127 | + <configuration> |
| 128 | + <repoToken>${coveralls-maven-plugin.repoToken}</repoToken> |
| 129 | + </configuration> |
| 130 | + </plugin> |
| 131 | + |
97 | 132 | <plugin> |
98 | 133 | <groupId>org.apache.maven.plugins</groupId> |
99 | 134 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments