mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 17:00:52 +01:00
113 lines
4.5 KiB
XML
113 lines
4.5 KiB
XML
<?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>
|
|
|
|
<artifactId>BlockReplacePackets</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>0.0.1-beta</version>
|
|
|
|
<parent>
|
|
<groupId>G-Earth</groupId>
|
|
<artifactId>G-Earth-Parent</artifactId>
|
|
<version>1.2</version>
|
|
<relativePath>../../</relativePath>
|
|
</parent>
|
|
|
|
<build>
|
|
<resources>
|
|
<!-- Embedded FXML and CSS resources -->
|
|
<resource>
|
|
<filtering>false</filtering>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.fxml</include>
|
|
<include>**/*.css</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/bin</outputDirectory>
|
|
<archive>
|
|
<manifest>
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>extensions.blockreplacepackets.BlockAndReplacePackets</mainClass>
|
|
<useUniqueVersions>false</useUniqueVersions>
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
</manifest>
|
|
</archive>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/bin</outputDirectory>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>extensions.blockreplacepackets.BlockAndReplacePackets</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- global build folder -->
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<target name="copy to extensions folder">
|
|
<copy file="target/bin/BlockReplacePackets.jar" todir="../../Build/Linux/Extensions"/>
|
|
<copy file="target/bin/BlockReplacePackets.jar" todir="../../Build/Mac/Extensions"/>
|
|
<copy file="target/bin/BlockReplacePackets.jar" todir="../../Build/Windows_32bit/Extensions"/>
|
|
<copy file="target/bin/BlockReplacePackets.jar" todir="../../Build/Windows_64bit/Extensions"/>
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>G-Earth</groupId>
|
|
<artifactId>G-Earth</artifactId>
|
|
<version>1.2</version>
|
|
<!--<scope>provided</scope>-->
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |