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>
|
2019-04-21 22:39:49 +00:00
|
|
|
<artifactId>VirtualComputer-Core</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2019-04-22 20:21:48 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>io.github.NorbiPeti</groupId>
|
|
|
|
<artifactId>VirtualComputer</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2017-10-15 01:55:16 +00:00
|
|
|
<build>
|
2020-08-11 17:00:00 +00:00
|
|
|
<finalName>VirtualComputer</finalName>
|
2017-10-15 01:55:16 +00:00
|
|
|
<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>
|
2020-07-31 22:14:30 +00:00
|
|
|
<version>3.2.4</version>
|
2017-10-15 01:55:16 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-08-11 17:00:00 +00:00
|
|
|
</plugins>
|
2017-10-15 01:55:16 +00:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
2019-04-22 20:21:48 +00:00
|
|
|
<dependency> <!-- This has the least additional (platform-dependent) code -->
|
|
|
|
<groupId>org.virtualbox</groupId>
|
|
|
|
<artifactId>VirtualBox-MSCOM</artifactId>
|
2020-07-31 22:14:30 +00:00
|
|
|
<version>6.1</version>
|
2017-12-21 21:23:23 +00:00
|
|
|
</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>
|
2020-10-16 16:59:06 +00:00
|
|
|
<!-- <dependency>
|
2019-04-22 20:21:48 +00:00
|
|
|
<groupId>io.github.NorbiPeti</groupId>
|
|
|
|
<artifactId>VirtualComputer-XPCOM</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2020-10-16 16:59:06 +00:00
|
|
|
</dependency> -->
|
2019-04-22 20:21:48 +00:00
|
|
|
<dependency>
|
2020-08-11 17:00:00 +00:00
|
|
|
<groupId>io.github.NorbiPeti</groupId>
|
2019-04-22 20:21:48 +00:00
|
|
|
<artifactId>VirtualComputer-MSCOM</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2019-03-18 11:39:02 +00:00
|
|
|
</dependency>
|
2020-08-01 21:15:10 +00:00
|
|
|
<!-- <dependency>
|
|
|
|
<groupId>me.lucko</groupId>
|
|
|
|
<artifactId>commodore</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</dependency> -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.PandacubeFr</groupId>
|
|
|
|
<artifactId>commodore</artifactId>
|
|
|
|
<version>patch-custom-suggests-SNAPSHOT</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>
|
2020-08-11 17:00:00 +00:00
|
|
|
<exclude>io.github.NorbiPeti:VirtualComputer-MSCOM</exclude>
|
2019-04-08 13:44:44 +00:00
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
2020-08-01 18:26:18 +00:00
|
|
|
<!-- <minimizeJar>true</minimizeJar> -->
|
2019-07-03 20:13:16 +00:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>io.github.NorbiPeti:VirtualComputer-XPCOM</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>**
|
|
|
|
</include> <!-- Don't delete org.mozilla.interfaces.internal when minimizing -->
|
|
|
|
</includes>
|
|
|
|
</filter>
|
2020-08-01 18:26:18 +00:00
|
|
|
<filter>
|
|
|
|
<artifact>com.github.jnr:jnr-ffi</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>**
|
|
|
|
</include> <!-- Don't delete org.mozilla.interfaces.internal when minimizing -->
|
|
|
|
</includes>
|
|
|
|
</filter>
|
2019-07-03 20:13:16 +00:00
|
|
|
</filters>
|
2019-04-08 13:44:44 +00:00
|
|
|
</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>
|
2020-08-11 17:00:00 +00:00
|
|
|
<exclude>io.github.NorbiPeti:VirtualComputer-XPCOM</exclude>
|
2019-04-08 13:44:44 +00:00
|
|
|
</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>
|