launch4j-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bluestemsoftware.open.maven.plugin</groupId> <artifactId>launch4j-plugin</artifactId> <version>1.5.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"> <parent> <groupId>org.bluestemsoftware.open.maven.plugin</groupId> <artifactId>launch4j-parent</artifactId> <version>1.5.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>launch4j-plugin</artifactId> <packaging>maven-plugin</packaging> <name>launch4j-plugin</name> <version>1.5.0.0</version> <description>Creates a launch4j windows installer (*.exe) from an executable jar file.</description> <scm> <connection>scm:svn:svn://alakai.org/eoa/maven/trunk/plugins/launch4j/plugin</connection> <developerConnection>scm:svn:svn://alakai.org/eoa/maven/trunk/plugins/launch4j/plugin</developerConnection> <url>scm:svn:svn://alakai.org/eoa/maven/trunk/plugins/launch4j/plugin</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>id1</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assemble-workdir</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/assemble-linux.xml</descriptor> <descriptor>src/main/assembly/assemble-win32.xml</descriptor> <descriptor>src/main/assembly/assemble-mac.xml</descriptor> <descriptor>src/main/assembly/assemble-solaris.xml</descriptor> <descriptor>src/main/assembly/assemble-solaris-x86.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>dist-src</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-archiver</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-descriptor</artifactId> <version>2.0.4</version> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.1.3</version> </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <version>1.6.5</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.7.0</version> </dependency> <!-- test scope dependencies --> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.2</version> <scope>test</scope> </dependency> </dependencies> </project>