|
21 | 21 | <hibernate-validator.version>5.2.2.Final</hibernate-validator.version> |
22 | 22 | <aws-java-sdk.version>1.10.39</aws-java-sdk.version> |
23 | 23 | <mockito.version>1.10.19</mockito.version> |
| 24 | + <maven.cobertura.plugin.version>2.7</maven.cobertura.plugin.version> |
24 | 25 |
|
25 | 26 | <cdi>1.2</cdi> |
26 | 27 | <commons.lang>3.4</commons.lang> |
27 | 28 |
|
28 | 29 | <maven.compiler.source>1.7</maven.compiler.source> |
29 | 30 | <maven.compiler.target>1.7</maven.compiler.target> |
| 31 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 32 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
30 | 33 | </properties> |
31 | 34 |
|
32 | 35 | <dependencyManagement> |
|
134 | 137 | </dependencies> |
135 | 138 |
|
136 | 139 | <build> |
137 | | - <pluginManagement> |
138 | | - <plugins> |
139 | | - </plugins> |
140 | | - </pluginManagement> |
141 | 140 | <plugins> |
| 141 | + <plugin> |
| 142 | + <groupId>org.codehaus.mojo</groupId> |
| 143 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 144 | + <version>${maven.cobertura.plugin.version}</version> |
| 145 | + <configuration> |
| 146 | + <formats> |
| 147 | + <format>xml</format> |
| 148 | + <format>html</format> |
| 149 | + </formats> |
| 150 | + <check> |
| 151 | + <totalBranchRate>85</totalBranchRate> |
| 152 | + <totalLineRate>91</totalLineRate> |
| 153 | + <haltOnFailure>true</haltOnFailure> |
| 154 | + </check> |
| 155 | + </configuration> |
| 156 | + </plugin> |
| 157 | + <plugin> |
| 158 | + <groupId>org.apache.maven.plugins</groupId> |
| 159 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 160 | + <version>2.15</version> |
| 161 | + <dependencies> |
| 162 | + <dependency> |
| 163 | + <groupId>com.puppycrawl.tools</groupId> |
| 164 | + <artifactId>checkstyle</artifactId> |
| 165 | + <version>6.6</version> |
| 166 | + </dependency> |
| 167 | + </dependencies> |
| 168 | + <executions> |
| 169 | + <execution> |
| 170 | + <id>verify-style</id> |
| 171 | + <phase>process-resources</phase> |
| 172 | + <goals> |
| 173 | + <goal>check</goal> |
| 174 | + </goals> |
| 175 | + </execution> |
| 176 | + </executions> |
| 177 | + <configuration> |
| 178 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 179 | + <logViolationsToConsole>true</logViolationsToConsole> |
| 180 | + <configLocation>checkstyle.xml</configLocation> |
| 181 | + </configuration> |
| 182 | + </plugin> |
142 | 183 | <plugin> |
143 | 184 | <groupId>org.apache.maven.plugins</groupId> |
144 | 185 | <artifactId>maven-release-plugin</artifactId> |
|
210 | 251 | </execution> |
211 | 252 | </executions> |
212 | 253 | </plugin> |
213 | | - <plugin> |
214 | | - <groupId>org.codehaus.mojo</groupId> |
215 | | - <artifactId>cobertura-maven-plugin</artifactId> |
216 | | - <version>2.5.1</version> |
217 | | - </plugin> |
218 | 254 |
|
219 | 255 | <plugin> |
220 | 256 | <groupId>org.apache.maven.plugins</groupId> |
|
228 | 264 | </build> |
229 | 265 |
|
230 | 266 | <scm> |
231 | | - <url>https://github.com/michaellavelle/spring-data-dynamodb</url> |
232 | | - <connection>scm:git:ssh://github.com/michaellavelle/spring-data-dynamodb.git</connection> |
233 | | - <developerConnection>scm:git:ssh://git@github.com/michaellavelle/spring-data-dynamodb.git</developerConnection> |
234 | | - <tag>spring-data-dynamodb-1.0.5</tag> |
235 | | - </scm> |
| 267 | + <url>https://github.com/derjust/spring-data-dynamodb</url> |
| 268 | + <connection>scm:git:ssh://github.com/derjust/spring-data-dynamodb.git</connection> |
| 269 | + <developerConnection>scm:git:ssh://git@github.com/derjust/spring-data-dynamodb.git</developerConnection> |
| 270 | + </scm> |
236 | 271 |
|
237 | 272 | <repositories> |
238 | 273 | <repository> |
|
0 commit comments