procyon-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.windup.decompiler.procyon</groupId> <artifactId>procyon-parent</artifactId> <version>2.5.0.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss.windup</groupId> <artifactId>windup-parent</artifactId> <version>2.5.0.Final</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>org.jboss.windup.decompiler.procyon</groupId> <artifactId>procyon-parent</artifactId> <packaging>pom</packaging> <name>Procyon Decompiler Parent</name> <modules> <module>Procyon.CompilerTools</module> <module>Procyon.Core</module> <module>Procyon.Expressions</module> <module>Procyon.Reflection</module> <!-- Not needed for windup <module>Procyon.Decompiler</module> --> </modules> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <compilerVersion>1.7</compilerVersion> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> <fork>true</fork> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>