Skip to content

Commit

Permalink
Upgrade QDox to 2.0-M4
Browse files Browse the repository at this point in the history
Introduce jdk9 profile with ASM 6.0_ALPHA

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1757907 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rfscholte committed Aug 26, 2016
1 parent 15180d9 commit 52c7bcc
Showing 1 changed file with 48 additions and 1 deletion.
49 changes: 48 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
<dependency>
<groupId>com.thoughtworks.qdox</groupId>
<artifactId>qdox</artifactId>
<version>2.0-M3</version>
<version>2.0-M4</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -272,6 +272,7 @@
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>1.7</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -381,5 +382,51 @@
</plugins>
</reporting>
</profile>
<profile>
<activation>
<jdk>[1.9,)</jdk>
</activation>
<!-- chicken-egg problem. Can only be built with Java9 once maven-plugin-plugin 3.5 is available -->
<!-- <build> -->
<!-- <plugins> -->
<!-- <plugin> -->
<!-- <artifactId>maven-enforcer-plugin</artifactId> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>enforce-bytecode-version</id> -->
<!-- <configuration> -->
<!-- <rules> -->
<!-- <enforceBytecodeVersion> -->
<!-- <maxJdkVersion>1.9</maxJdkVersion> -->
<!-- </enforceBytecodeVersion> -->
<!-- </rules> -->
<!-- </configuration> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- <dependencies> -->
<!-- <dependency> -->
<!-- <groupId>org.codehaus.mojo</groupId> -->
<!-- <artifactId>extra-enforcer-rules</artifactId> -->
<!-- <version>1.0-beta-5</version> -->
<!-- </dependency> -->
<!-- </dependencies> -->
<!-- </plugin> -->
<!-- </plugins> -->
<!-- </build> -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>6.0_ALPHA</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>6.0_ALPHA</version>

This comment has been minimized.

Copy link
@don-vip

don-vip Dec 7, 2017

Contributor

I have created #9 to upgrade 6.0_ALPHA to 6.0 (final), as it now causes problems to downstream projects using Maven Enforcer and ASM 6.0.

</dependency>
</dependencies>
</dependencyManagement>
</profile>
</profiles>
</project>

0 comments on commit 52c7bcc

Please sign in to comment.