1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
5 |
|
6 |
<modelVersion>4.0.0</modelVersion> |
7 |
<groupId>info.bioinfweb.jphyloio</groupId> |
8 |
<artifactId>jphyloio-core</artifactId> |
9 |
<version>0.4.0</version> |
10 |
<packaging>jar</packaging> |
11 |
<name>JPhyloIO core</name> |
12 |
<description>The core module of JPhyloIO.</description> |
13 |
<url>http://bioinfweb.info/JPhyloIO/</url> |
14 |
<licenses> |
15 |
<license> |
16 |
<name>GNU Lesser General Public License, Version 3</name> |
17 |
<url>http://bioinfweb.info/JPhyloIO/License/LGPL</url> |
18 |
</license> |
19 |
</licenses> |
20 |
<developers> |
21 |
<developer> |
22 |
<name>Ben Stöver</name> |
23 |
<email>stoever@bioinfweb.info</email> |
24 |
<organization>bioinfweb.info</organization> |
25 |
<organizationUrl>http://www.bioinfweb.info/</organizationUrl> |
26 |
</developer> |
27 |
<developer> |
28 |
<name>Sarah Wiechers</name> |
29 |
<email>wiechers@bioinfweb.info</email> |
30 |
<organization>bioinfweb.info</organization> |
31 |
<organizationUrl>http://bioinfweb.info/</organizationUrl> |
32 |
</developer> |
33 |
</developers> |
34 |
<scm> |
35 |
<connection>scm:svn:https://secure.bioinfweb.info/Code/svn/JPhyloIO/trunk/main/</connection> |
36 |
<developerConnection>scm:svn:https://secure.bioinfweb.info/Code/svn/JPhyloIO/trunk/main/</developerConnection> |
37 |
<url>http://bioinfweb.info/Code/sventon/repos/JPhyloIO/list/trunk/main/</url> |
38 |
</scm> |
39 |
|
40 |
<dependencies> |
41 |
<dependency> |
42 |
<groupId>info.bioinfweb.commons.java</groupId> |
43 |
<artifactId>bioinfweb-commons-java-core</artifactId> |
44 |
<version>3.2.0</version> |
45 |
</dependency> |
46 |
<dependency> |
47 |
<groupId>info.bioinfweb.commons.java</groupId> |
48 |
<artifactId>bioinfweb-commons-java-bio</artifactId> |
49 |
<version>[2.0.0,3.0.0)</version> |
50 |
</dependency> |
51 |
|
52 |
<dependency> |
53 |
<groupId>info.bioinfweb.thirdparty.owlapi</groupId> |
54 |
<artifactId>owlapi-xmlutils</artifactId> |
55 |
<version>4.1.4</version> |
56 |
</dependency> |
57 |
|
58 |
|
59 |
<dependency> |
60 |
<groupId>org.apache.commons</groupId> |
61 |
<artifactId>commons-lang3</artifactId> |
62 |
<version>3.5</version> |
63 |
</dependency> |
64 |
|
65 |
|
66 |
<dependency> |
67 |
<groupId>org.apache.commons</groupId> |
68 |
<artifactId>commons-collections4</artifactId> |
69 |
<version>4.1</version> |
70 |
</dependency> |
71 |
|
72 |
|
73 |
<dependency> |
74 |
<groupId>javax.xml.bind</groupId> |
75 |
<artifactId>jaxb-api</artifactId> |
76 |
<version>2.4.0-b180830.0359</version> |
77 |
</dependency> |
78 |
|
79 |
|
80 |
<dependency> |
81 |
<groupId>javax.activation</groupId> |
82 |
<artifactId>javax.activation-api</artifactId> |
83 |
<version>1.2.0</version> |
84 |
</dependency> |
85 |
</dependencies> |
86 |
</project> |