-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpom.xml
80 lines (71 loc) · 2.71 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of JSBML. Please visit http://sbml.org/Software/JSBML
for the latest version of JSBML and more information about SBML.
Copyright (C) 2009-2022 jointly by the following organizations:
1. The University of Tuebingen, Germany
2. EMBL European Bioinformatics Institute (EBML-EBI), Hinxton, UK
3. The California Institute of Technology, Pasadena, CA, USA
4. The University of California, San Diego, La Jolla, CA, USA
5. The Babraham Institute, Cambridge, UK
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation. A copy of the license agreement is provided
in the file named "LICENSE.txt" included with this software distribution
and also available online as http://sbml.org/Software/JSBML/License.
-->
<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.sbml.jsbml.ext</groupId>
<artifactId>ext</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>org.sbml.jsbml</groupId>
<artifactId>jsbml-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<repositories>
<repository>
<id>ebi-repo</id>
<name>The EBI internal repository</name>
<url>https://www.ebi.ac.uk/~maven/m2repo</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.sbml.jsbml</groupId>
<artifactId>jsbml-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mangosdk.spi</groupId>
<artifactId>spi</artifactId>
<version>0.2.4</version>
<optional>true</optional>
</dependency>
</dependencies>
<modules>
<module>arrays</module>
<module>comp</module>
<module>distrib</module>
<module>dyn</module>
<module>fbc</module>
<module>groups</module>
<module>layout</module>
<module>multi</module>
<module>qual</module>
<module>render</module>
<module>req</module>
<module>spatial</module>
</modules>
</project>