-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
93 lines (83 loc) · 3.33 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>eu.ddmore.pharmml</groupId>
<artifactId>libPharmML-PKMacro</artifactId>
<version>0.3.2-1</version>
<url>https://sourceforge.net/projects/libpharmml.ddmore.p/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>EMBL-European Bioinformatics Institute</name>
<url>http://www.ebi.ac.uk/</url>
</organization>
<developers>
<developer>
<name>Florent Yvon</name>
<email>florent@ebi.ac.uk</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://git.code.sf.net/p/ddmore/libpharmml/git</connection>
</scm>
<repositories>
<repository>
<id>ebi-repo</id>
<name>EBI Repository</name>
<url>http://www.ebi.ac.uk/~maven/m2repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.7</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>eu.ddmore.pharmml</groupId>
<artifactId>libPharmML</artifactId>
<version>[0.7.2-1,0.8-1)</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ebi-repo</id>
<name>EBI Repository</name>
<url>scp://lobster.ebi.ac.uk/homes/maven/public_html/m2repo</url>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>ebi-repo-snapshots</id>
<name>EBI Snapshots Repository</name>
<url>scp://lobster.ebi.ac.uk/homes/maven/public_html/m2repo_snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</build>
</project>