-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
185 lines (162 loc) · 6.32 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<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>ocelot</groupId>
<artifactId>ocelot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/test/resources</directory>
</resource>
</resources>
</build>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<powermock.version>1.7.1</powermock.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core -->
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>1.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-ext -->
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-ext</artifactId>
<version>1.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/jgraph/jgraph -->
<dependency>
<groupId>jgraph</groupId>
<artifactId>jgraph</artifactId>
<version>5.13.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/gnu.getopt/java-getopt -->
<dependency>
<groupId>gnu.getopt</groupId>
<artifactId>java-getopt</artifactId>
<version>1.0.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/jgraph/jgraphaddons -->
<dependency>
<groupId>jgraph</groupId>
<artifactId>jgraphaddons</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.eclipse.cdt</groupId>
<artifactId>core</artifactId>
<version>5.9.1</version>
<scope>system</scope>
<systemPath>${basedir}/libs/org.eclipse.cdt.core_5.9.1.201502131403.jar</systemPath>
</dependency>
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>runtime</artifactId>
<version>2.1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/eclipse-runtime-2.1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>org.eclipse.cdt</groupId>
<artifactId>codan</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/org.eclipse.cdt.codan.core.cxx_1.0.0.201109151620.jar</systemPath>
</dependency>
<dependency>
<groupId>org.uma.jmetal</groupId>
<artifactId>jmetal</artifactId>
<version>4.5</version>
<scope>system</scope>
<systemPath>${basedir}/libs/jmetal4.5.jar</systemPath>
</dependency>
<dependency>
<groupId>anarres</groupId>
<artifactId>cpp</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/anarres-cpp.jar</systemPath>
</dependency>
<dependency>
<groupId>lpsolve</groupId>
<artifactId>core</artifactId>
<version>55</version>
<scope>system</scope>
<systemPath>${basedir}/libs/lpsolve55j.jar</systemPath>
</dependency>
<dependency>
<groupId>javailp</groupId>
<artifactId>core</artifactId>
<version>1.2a</version>
<scope>system</scope>
<systemPath>${basedir}/libs/javailp-1.2a.jar</systemPath>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>tools</artifactId>
<version>1.6.6</version>
<scope>system</scope>
<systemPath>${basedir}/libs/aspectjtools-1.6.6.jar</systemPath>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<!--<scope>test</scope>-->
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<!--<scope>test</scope>-->
</dependency>
</dependencies>
</project>