Repository: incubator-htrace Updated Branches: refs/heads/master 534197392 -> 4508cd5c3
HTRACE-399. Exclude jackson from test dependency on htrace-core4 to avoid infinite loop on creating dependency-reduced-pom (Masatake Iwasaki via Colin P. McCabe) Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/4508cd5c Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/4508cd5c Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/4508cd5c Branch: refs/heads/master Commit: 4508cd5c3b3899d12014d7d1403852e546f414df Parents: 5341973 Author: Colin P. McCabe <[email protected]> Authored: Tue May 23 17:12:08 2017 -0700 Committer: Colin P. McCabe <[email protected]> Committed: Tue May 23 17:12:08 2017 -0700 ---------------------------------------------------------------------- htrace-hbase/pom.xml | 10 ++++++++++ pom.xml | 26 -------------------------- 2 files changed, 10 insertions(+), 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/4508cd5c/htrace-hbase/pom.xml ---------------------------------------------------------------------- diff --git a/htrace-hbase/pom.xml b/htrace-hbase/pom.xml index e3427c5..fdce60f 100644 --- a/htrace-hbase/pom.xml +++ b/htrace-hbase/pom.xml @@ -130,6 +130,16 @@ language governing permissions and limitations under the License. --> <artifactId>htrace-core4</artifactId> <version>${project.version}</version> <classifier>tests</classifier> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> <scope>test</scope> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/4508cd5c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index fe93777..44e850a 100644 --- a/pom.xml +++ b/pom.xml @@ -122,27 +122,6 @@ language governing permissions and limitations under the License. --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <version>${maven-enforcer-plugin.version}</version> - <executions> - <execution> - <id>enforce-maven</id> - <goals> - <goal>enforce</goal> - </goals> - <configuration> - <rules> - <requireMavenVersion> - <version>[3.0.4]</version> - <message>Maven 3.0.4 is required, see HTRACE-236</message> - </requireMavenVersion> - </rules> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> @@ -241,10 +220,6 @@ language governing permissions and limitations under the License. --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> <plugin> @@ -301,7 +276,6 @@ language governing permissions and limitations under the License. --> <properties> <targetJdk>1.7</targetJdk> <failIfNoTests>false</failIfNoTests> - <maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version> <maven-source-plugin.version>2.1.2</maven-source-plugin.version> <maven-javadoc-plugin.version>2.8.1</maven-javadoc-plugin.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version>
