74 lines
2.9 KiB
XML
74 lines
2.9 KiB
XML
<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">
|
|
<parent>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<artifactId>invsee-plus-plus</artifactId>
|
|
<version>0.31.11-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>impl_glowstone</artifactId>
|
|
<name>InvSee++ implementation for Glowstone</name>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<release>8</release>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>${maven-shade-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>junit:junit</exclude>
|
|
<exclude>org.hamcrest:hamcrest-core</exclude>
|
|
<exclude>com.googlecode.json-simple:json-simple</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.glowstone</groupId>
|
|
<artifactId>glowstone</artifactId>
|
|
<version>2021.8.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/../../.libs/glowstone.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<artifactId>invsee-plus-plus_common</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<artifactId>utils</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |