-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
53 lines (53 loc) · 2.22 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
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<!-- inherit from james parent POM -->
<parent>
<groupId>org.jamesframework</groupId>
<artifactId>james</artifactId>
<version>1.2</version>
</parent>
<!-- james extensions specifications -->
<artifactId>james-extensions</artifactId>
<version>1.2.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>james-extensions</name>
<description>
The JAMES extensions module is part of the JAMES framework for discrete optimization
using local search metaheuristics in Java. It extends the core with additional tools
for advanced problem specification and search customization. It also provides specific
components for some other problem types besides subset selection (e.g. permutation problems)
and an automated analysis workflow.
</description>
<scm>
<connection>scm:git:git@github.com:hdbeukel/james-extensions.git</connection>
<developerConnection>scm:git:git@github.com:hdbeukel/james-extensions.git</developerConnection>
<url>https://github.com/hdbeukel/james-extensions</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- depends on core module -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>james-core</artifactId>
<version>1.2</version>
</dependency>
<!-- tests depend on core module tests -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>james-core</artifactId>
<version>1.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- depends on mjson library -->
<dependency>
<groupId>org.sharegov</groupId>
<artifactId>mjson</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>