Skip to content
Snippets Groups Projects
pom.xml 2.06 KiB
Newer Older
<?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>

    <groupId>com.fossgalaxy.games.server</groupId>
    <artifactId>fireworks-server</artifactId>
    <version>0.1-SNAPSHOT</version>

    <parent>
        <groupId>com.fossgalaxy.common</groupId>
        <artifactId>parent-pom</artifactId>
        <version>0.3</version>
    </parent>

    <build>
        <plugins>
            <!-- other plugins here -->
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <archive>
                        <manifest>
                            <mainClass>com.fossgalaxy.games.fireworks.NetClient</mainClass>
                        </manifest>
                    </archive>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>com.fossgalaxy.games</groupId>
            <artifactId>fireworks</artifactId>
Joseph Walton-Rivers's avatar
Joseph Walton-Rivers committed
            <version>0.2-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.reflections</groupId>
            <artifactId>reflections</artifactId>
            <version>0.9.11</version>
        </dependency>
        <dependency>
            <groupId>net.sf.jopt-simple</groupId>
            <artifactId>jopt-simple</artifactId>
            <version>5.0.3</version>
        </dependency>
    </dependencies>

</project>