gradle-launch4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.fvarrui</groupId> <artifactId>gradle-launch4j</artifactId> <version>2.4.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.fvarrui</groupId> <artifactId>gradle-launch4j</artifactId> <version>2.4.6</version> <name>gradle-launch4j</name> <description>A gradle-plugin that uses launch4j to create windows .exe files for java applications.</description> <url>https://github.com/fvarrui/gradle-launch4j/</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>theboegl</id> <name>Sebastian B�gl</name> <email>info@sebastianboegl.de</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/fvarrui/gradle-launch4j.git</connection> <developerConnection>scm:git:git@github.com:fvarrui/gradle-launch4j.git</developerConnection> <url>https://github.com/fvarrui/gradle-launch4j/</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/TheBoegl/gradle-launch4j/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.11.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.sf.launch4j</groupId> <artifactId>launch4j</artifactId> <version>3.12</version> <classifier>core</classifier> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>foxtrot</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>org.apache.ant</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>net.java.abeille</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>org.apache.batik</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>com.jgoodies</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>1.1-groovy-2.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-dep</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>groovy-all</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>