-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated pom / Commented external jar reference / Removed unnessecary
included target
- Loading branch information
deathmarine
committed
Feb 9, 2015
1 parent
15a9ee1
commit 5419968
Showing
2 changed files
with
209 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
<assembly> | ||
<id>${project.version}</id> | ||
<formats> | ||
<format>jar</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>true</unpack> | ||
<scope>runtime</scope> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.outputDirectory}</directory> | ||
</fileSet> | ||
</fileSets> | ||
<assembly> | ||
<id>${project.version}</id> | ||
<formats> | ||
<format>jar</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>true</unpack> | ||
<scope>runtime</scope> | ||
</dependencySet> | ||
</dependencySets> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,148 +1,198 @@ | ||
<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> | ||
<groupId>us.deathmarine</groupId> | ||
<artifactId>luyten</artifactId> | ||
<version>0.4.2</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.fifesoft</groupId> | ||
<artifactId>rsyntaxtextarea</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-core</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-expressions</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-reflection</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-compilertools</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<id>central</id> | ||
<name>Central Repository</name> | ||
<url>http://repo.maven.apache.org/maven2</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<finalName>${project.artifactId}-${project.version}-lib</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src</directory> | ||
<excludes> | ||
<exclude>**/*.java</exclude> | ||
</excludes> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>Assembly.xml</descriptor> | ||
</descriptors> | ||
<finalName>${project.artifactId}</finalName> | ||
<archive> | ||
<manifest> | ||
<mainClass>${project.groupId}.${project.artifactId}.Luyten</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.bluestemsoftware.open.maven.plugin</groupId> | ||
<artifactId>launch4j-plugin</artifactId> | ||
<version>1.5.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>l4j-gui</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>launch4j</goal> | ||
</goals> | ||
<configuration> | ||
<headerType>gui</headerType> | ||
<outfile>target/${project.artifactId}-${project.version}.exe</outfile> | ||
<jar>target/${project.artifactId}-${project.version}.jar</jar> | ||
<errTitle>App Err</errTitle> | ||
<classPath> | ||
<mainClass>${project.groupId}.${project.artifactId}.Luyten</mainClass> | ||
</classPath> | ||
<icon>Luyten.ico</icon> | ||
<jre> | ||
<minVersion>1.6.0</minVersion> | ||
<maxVersion>1.8.0</maxVersion> | ||
<initialHeapSize>128</initialHeapSize> | ||
<maxHeapSize>1024</maxHeapSize> | ||
</jre> | ||
<versionInfo> | ||
<fileVersion>0.${project.version}</fileVersion> | ||
<txtFileVersion>0.${project.version}</txtFileVersion> | ||
<fileDescription>Java Decompiler</fileDescription> | ||
<copyright>2014</copyright> | ||
<productVersion>0.${project.version}</productVersion> | ||
<txtProductVersion>0.${project.version}</txtProductVersion> | ||
<productName>${project.artifactId}</productName> | ||
<internalName>${project.artifactId}</internalName> | ||
<originalFilename>Luyten.exe</originalFilename> | ||
</versionInfo> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9</version> | ||
<configuration> | ||
<show>public</show> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9</version> | ||
<configuration> | ||
<show>public</show> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<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> | ||
<groupId>us.deathmarine</groupId> | ||
<artifactId>luyten</artifactId> | ||
<version>0.4.4</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.fifesoft</groupId> | ||
<artifactId>rsyntaxtextarea</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-core</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-expressions</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-reflection</artifactId> | ||
<version>LATEST</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon-compilertools</artifactId> | ||
<version>LATEST</version> | ||
</dependency> <!-- | ||
<dependency> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon</artifactId> | ||
<version>0.5.27</version> | ||
</dependency>--> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<id>central</id> | ||
<name>Central Repository</name> | ||
<url>http://repo.maven.apache.org/maven2</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<finalName>${project.artifactId}-${project.version}-lib</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src</directory> | ||
<excludes> | ||
<exclude>**/*.java</exclude> | ||
</excludes> | ||
</resource> | ||
<resource> | ||
<directory>target</directory> | ||
<excludes> | ||
<exclude>**/*.*</exclude> | ||
</excludes> | ||
</resource> | ||
</resources> | ||
<plugins><!-- | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-install-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>install-file</goal> | ||
</goals> | ||
<configuration> | ||
<groupId>org.bitbucket.mstrobel</groupId> | ||
<artifactId>procyon</artifactId> | ||
<version>0.5.27</version> | ||
<packaging>jar</packaging> | ||
<file>${basedir}/lib/procyon-decompiler-0.5.27.jar</file> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin>--> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>assembly.xml</descriptor> | ||
</descriptors> | ||
<finalName>${project.artifactId}</finalName> | ||
<archive> | ||
<manifest> | ||
<mainClass>${project.groupId}.${project.artifactId}.Luyten</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.bluestemsoftware.open.maven.plugin</groupId> | ||
<artifactId>launch4j-plugin</artifactId> | ||
<version>1.5.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>l4j-gui</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>launch4j</goal> | ||
</goals> | ||
<configuration> | ||
<headerType>gui</headerType> | ||
<outfile>target/${project.artifactId}-${project.version}.exe</outfile> | ||
<jar>target/${project.artifactId}-${project.version}.jar</jar> | ||
<errTitle>App Err</errTitle> | ||
<classPath> | ||
<mainClass>${project.groupId}.${project.artifactId}.Luyten</mainClass> | ||
</classPath> | ||
<icon>Luyten.ico</icon> | ||
<jre> | ||
<minVersion>1.6.0</minVersion> | ||
<maxVersion>1.8.0</maxVersion> | ||
<initialHeapSize>128</initialHeapSize> | ||
<maxHeapSize>1024</maxHeapSize> | ||
</jre> | ||
<versionInfo> | ||
<fileVersion>0.${project.version}</fileVersion> | ||
<txtFileVersion>0.${project.version}</txtFileVersion> | ||
<fileDescription>Java Decompiler</fileDescription> | ||
<copyright>2014</copyright> | ||
<productVersion>0.${project.version}</productVersion> | ||
<txtProductVersion>0.${project.version}</txtProductVersion> | ||
<productName>${project.artifactId}</productName> | ||
<internalName>${project.artifactId}</internalName> | ||
<originalFilename>Luyten.exe</originalFilename> | ||
</versionInfo> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<!--This plugin does nothing in maven, it is only to appease Eclipse and remove red squigglys.--> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId> | ||
org.apache.maven.plugins | ||
</groupId> | ||
<artifactId> | ||
maven-install-plugin | ||
</artifactId> | ||
<versionRange> | ||
[2.4,) | ||
</versionRange> | ||
<goals> | ||
<goal>install-file</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore></ignore> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
</build> | ||
</project> |