yapbam-launcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.fathzer</groupId>
<artifactId>yapbam-launcher</artifactId>
<version>1.0.2</version>
</dependency><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>com.fathzer</groupId> <artifactId>parent-pom</artifactId> <version>1.1.0</version> </parent> <artifactId>yapbam-launcher</artifactId> <version>1.0.2</version> <name>yapbam-launcher</name> <description>Yapbam launcher is a launcher dedicated to the Yapbam application</description> <url>http://www.yapbam.net</url> <scm> <url>https://github.com/yapbam/yapbam-launcher</url> <connection>https://github.com/yapbam/yapbam-launcher</connection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.5</maven.compiler.source> <maven.compiler.target>1.5</maven.compiler.target> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> <manifest> <mainClass>net.yapbam.gui.Launcher</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>