mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Fix javadoc 8 error; actually enable enforcer; update plugins
This commit is contained in:
parent
5561322512
commit
ea9a260f0a
|
@ -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 {
|
||||
|
|
9
pom.xml
9
pom.xml
|
@ -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>
|
||||
|
@ -143,6 +147,9 @@
|
|||
<id>enforce</id>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireModuleConvergence/>
|
||||
<requirePluginVersions/>
|
||||
<requireUpperBoundDeps/>
|
||||
<dependencyConvergence />
|
||||
<requireMavenVersion>
|
||||
<version>${maven.version.min}</version>
|
||||
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue