-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
94 lines (85 loc) · 2.42 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<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>edu.upc.fib</groupId>
<artifactId>ossim</artifactId>
<version>1.2.0</version>
<name>OSSim</name>
<description>Operating System Concepts Simulator</description>
<properties>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<exec.mainClass>edu.upc.fib.ossim.OSSimFrame</exec.mainClass>
</properties>
<organization>
<name>Francisco Vargas Ruiz</name>
<url>https://github.com/fvarrui</url>
</organization>
<licenses>
<license>
<name>BSD-3</name>
<comments>BSD 3-Clause License</comments>
<url>LICENSE</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>io.github.fvarrui</groupId>
<artifactId>javapackager</artifactId>
<version>1.2.0</version>
<configuration>
<bundleJre>true</bundleJre>
<mainClass>${exec.mainClass}</mainClass>
<generateInstaller>false</generateInstaller>
</configuration>
<executions>
<execution>
<id>package-for-windows</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>windows</platform>
<createZipball>true</createZipball>
</configuration>
</execution>
<execution>
<id>package-for-linux</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>linux</platform>
<jdkPath>C:\Program Files\AdoptOpenJDK\jdk-11.0.8+10-linux</jdkPath>
<createTarball>true</createTarball>
</configuration>
</execution>
<execution>
<id>package-for-mac</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>mac</platform>
<jdkPath>C:\Program Files\AdoptOpenJDK\jdk-11.0.8+10-mac\Contents\Home</jdkPath>
<createTarball>true</createTarball>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>