-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
86 lines (80 loc) · 2.59 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
<?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>
<groupId>org.emoflon.ilp.group</groupId>
<artifactId>org.emoflon.ilp.parent</artifactId>
<version>0.0.2</version>
<packaging>pom</packaging>
<name>eMoflon-ILP for Eclipse</name>
<properties>
<tycho.version>4.0.12</tycho.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.resource.version>3.3.1</maven.resource.version>
<ld.library.path>/opt/gurobi1201/linux64/lib/:/opt/ibm/ILOG/CPLEX_Studio2211/cplex/bin/x86-64_linux/</ld.library.path>
</properties>
<modules>
<module>org.emoflon.ilp</module>
<module>org.emoflon.ilp.feature</module>
<module>org.emoflon.ilp.updatesite</module>
<module>org.emoflon.ilp.dependencies</module>
<module>org.emoflon.ilp.tests</module>
</modules>
<repositories>
<repository>
<id>eclipse-2024-12</id>
<layout>p2</layout>
<url>https://download.eclipse.org/releases/2024-12</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resource.version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho.version}</version>
<configuration combine.self="override">
<environmentVariables>
<LD_LIBRARY_PATH>${ld.library.path}</LD_LIBRARY_PATH>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>