2017-10-15 01:55:16 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-18 11:39:02 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-10-15 01:55:16 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>io.github.NorbiPeti</groupId>
|
2019-04-21 22:39:49 +00:00
|
|
|
<artifactId>VirtualComputer-Core</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2017-10-15 01:55:16 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2019-03-10 23:21:31 +00:00
|
|
|
<compilerArgs>
|
2019-03-18 11:39:02 +00:00
|
|
|
<arg>-g</arg> <!-- LocalVariableTable -->
|
2019-03-10 23:21:31 +00:00
|
|
|
</compilerArgs>
|
2017-10-15 01:55:16 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.4.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>repo</id>
|
|
|
|
<url>file://${basedir}/repo</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.12-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-04-21 23:04:01 +00:00
|
|
|
<!-- <dependency> - Not using anything from here directly so we're not that dependent on versions
|
2019-04-08 13:44:44 +00:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2019-04-21 23:04:01 +00:00
|
|
|
</dependency> -->
|
2017-10-15 01:55:16 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
<version>4.4.0</version>
|
|
|
|
</dependency>
|
2017-12-21 21:23:23 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.jnr/jnr-ffi -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.jnr</groupId>
|
|
|
|
<artifactId>jnr-ffi</artifactId>
|
|
|
|
<version>2.1.7</version>
|
|
|
|
</dependency>
|
2019-03-06 12:36:03 +00:00
|
|
|
<dependency>
|
2019-03-18 11:39:02 +00:00
|
|
|
<groupId>com.aparapi</groupId>
|
|
|
|
<artifactId>aparapi</artifactId>
|
|
|
|
<version>1.10.0</version>
|
|
|
|
</dependency>
|
2019-03-10 23:21:31 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.16.16</version>
|
|
|
|
</dependency>
|
2019-03-18 11:39:02 +00:00
|
|
|
<dependency> <!-- javax.annotations.Nullable -->
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
2017-10-15 01:55:16 +00:00
|
|
|
</dependencies>
|
2019-04-08 13:44:44 +00:00
|
|
|
<profiles>
|
2019-04-05 23:25:44 +00:00
|
|
|
<profile>
|
|
|
|
<id>XPCOM</id>
|
2019-04-08 13:44:44 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.virtualbox:VirtualBox-MSCOM</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-04-05 23:25:44 +00:00
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>MSCOM</id>
|
2019-04-08 13:44:44 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.virtualbox:VirtualBox</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-04-05 23:25:44 +00:00
|
|
|
</profile>
|
2019-04-08 13:44:44 +00:00
|
|
|
</profiles>
|
2016-12-29 22:30:02 +00:00
|
|
|
</project>
|