HBASE-17351 Enforcer plugin fails with NullPointerException
This commit is contained in:
parent
296bb00540
commit
9cccf31254
6
pom.xml
6
pom.xml
|
@ -775,7 +775,7 @@
|
||||||
<pluginExecutionFilter>
|
<pluginExecutionFilter>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
<versionRange>[1.0.1,)</versionRange>
|
<version>${enforcer.version}</version>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>enforce</goal>
|
<goal>enforce</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
@ -934,6 +934,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>${enforcer.version}</version>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
@ -1478,6 +1479,8 @@
|
||||||
<argLine>${hbase-surefire.argLine}</argLine>
|
<argLine>${hbase-surefire.argLine}</argLine>
|
||||||
<jacoco.version>0.7.5.201505241946</jacoco.version>
|
<jacoco.version>0.7.5.201505241946</jacoco.version>
|
||||||
<extra.enforcer.version>1.0-beta-6</extra.enforcer.version>
|
<extra.enforcer.version>1.0-beta-6</extra.enforcer.version>
|
||||||
|
<!--See HBASE-17351; we need to set version to 1.4. 1.4.1 fails with MENFORCER-248-->
|
||||||
|
<enforcer.version>1.4</enforcer.version>
|
||||||
<!-- Location of test resources -->
|
<!-- Location of test resources -->
|
||||||
<test.build.classes>${project.build.directory}/test-classes</test.build.classes>
|
<test.build.classes>${project.build.directory}/test-classes</test.build.classes>
|
||||||
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
||||||
|
@ -2270,6 +2273,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>${enforcer.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<rules>
|
<rules>
|
||||||
<enforceBytecodeVersion>
|
<enforceBytecodeVersion>
|
||||||
|
|
Loading…
Reference in New Issue