Skip to content
This repository has been archived by the owner on May 3, 2018. It is now read-only.

Commit

Permalink
Add seven2six transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlloyd committed Aug 30, 2013
1 parent 448612b commit 7b4b569
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>10</version>
<version>11</version>
</parent>

<licenses>
Expand All @@ -46,6 +46,7 @@

<properties>
<skip.enforcer>false</skip.enforcer>
<skip.compile>false</skip.compile>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
</properties>
Expand All @@ -58,6 +59,8 @@
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<skipMain>${skip.compile}</skipMain>
<skip>${skip.compile}</skip>
</configuration>
</plugin>

Expand Down Expand Up @@ -116,6 +119,27 @@
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>

<!-- Backwards compat -->
<plugin>
<groupId>org.jboss.seven2six</groupId>
<artifactId>seven2six</artifactId>
<version>1.0.Final</version>
<executions>
<execution>
<id>weave</id>
<phase>process-classes</phase>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>

<configuration>
<skip>${skip.compile}</skip>
</configuration>

</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit 7b4b569

Please sign in to comment.