Skip to content

Commit

Permalink
Fix javadoc 8 error; actually enable enforcer; update plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen committed May 25, 2015
1 parent 5561322 commit ea9a260
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public final class DecoderTest {
* at com.google.zxing.aztec.decoder.Decoder.correctBits(Decoder.java:231)
* at com.google.zxing.aztec.decoder.Decoder.decode(Decoder.java:77)
* at com.google.zxing.aztec.decoder.DecoderTest.testDecodeBug1(DecoderTest.java:66)</pre>
* @throws FormatException
*/
@Test(expected = FormatException.class)
public void testDecodeTooManyErrors() throws FormatException {
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand All @@ -143,6 +147,9 @@
<id>enforce</id>
<configuration>
<rules>
<requireModuleConvergence/>
<requirePluginVersions/>
<requireUpperBoundDeps/>
<dependencyConvergence />
<requireMavenVersion>
<version>${maven.version.min}</version>
Expand Down Expand Up @@ -494,7 +501,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.4.201502262128</version>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
<version>1.3.1</version>
<version>1.4</version>
</skin>

<body>
Expand Down

0 comments on commit ea9a260

Please sign in to comment.