2017-03-26 20:36:49 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-03-28 10:04:06 -06:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-03-26 20:36:49 -06:00
|
|
|
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>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-gui</artifactId>
|
2017-03-26 20:36:49 -06:00
|
|
|
<parent>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
|
|
|
<artifactId>iBioSim</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-03-26 20:36:49 -06:00
|
|
|
<relativePath>../</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
<packaging>jar</packaging>
|
2017-03-28 10:59:20 -06:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2017-04-16 17:25:18 -06:00
|
|
|
<!-- Build an executable JAR -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>build-gui</id>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
2017-04-17 19:55:26 +01:00
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.gui.Gui</mainClass>
|
2017-04-16 17:25:18 -06:00
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
<descriptorRefs>
|
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
|
</descriptorRefs>
|
|
|
|
|
</configuration>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>assembly</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2017-03-28 10:59:20 -06:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2018-01-16 17:16:56 -07:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<name>ossrh</name>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
2017-03-26 20:36:49 -06:00
|
|
|
<id>ebi</id>
|
|
|
|
|
<name>ebi</name>
|
|
|
|
|
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jboss</id>
|
|
|
|
|
<name>jboss</name>
|
|
|
|
|
<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>netbeans</id>
|
|
|
|
|
<name>netbeans</name>
|
|
|
|
|
<url>http://bits.netbeans.org/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>osgeo</id>
|
|
|
|
|
<name>osgeo</name>
|
|
|
|
|
<url>http://download.osgeo.org/webdav/geotools/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>alfresco</id>
|
|
|
|
|
<name>alfresco</name>
|
|
|
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
|
|
|
|
|
</repository>
|
2017-08-18 10:49:11 -06:00
|
|
|
<repository>
|
|
|
|
|
<id>sems-maven-repository-releases</id>
|
|
|
|
|
<name>SEMS Maven Repo</name>
|
|
|
|
|
<url>http://mvn.sems.uni-rostock.de/releases/</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>sems-maven-repository-snapshots</id>
|
|
|
|
|
<name>SEMS Maven Repo</name>
|
|
|
|
|
<url>http://mvn.sems.uni-rostock.de/snapshots/</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
</repository>
|
2017-03-26 20:36:49 -06:00
|
|
|
</repositories>
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
<groupId>org.tinyjee.jgraphx</groupId>
|
|
|
|
|
<artifactId>jgraphx</artifactId>
|
|
|
|
|
<version>3.4.1.3</version>
|
2017-03-26 20:36:49 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
<version>1.0.17</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
<version>1.0.14</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
2017-03-28 10:04:06 -06:00
|
|
|
<groupId>uk.ac.ebi.biomodels</groupId>
|
|
|
|
|
<artifactId>biomodels-wslib</artifactId>
|
|
|
|
|
<version>1.21</version>
|
2017-03-26 20:36:49 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.kohsuke</groupId>
|
|
|
|
|
<artifactId>github-api</artifactId>
|
|
|
|
|
<version>1.84</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2017-03-26 21:40:33 -06:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-dataModels</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-03-26 21:40:33 -06:00
|
|
|
</dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
|
2017-03-26 21:40:33 -06:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-conversion</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-03-26 21:40:33 -06:00
|
|
|
</dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
|
2017-03-27 16:45:35 -06:00
|
|
|
<dependency>
|
2017-04-13 15:53:09 -06:00
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-learn</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-03-27 16:45:35 -06:00
|
|
|
</dependency>
|
2017-04-04 23:20:47 -06:00
|
|
|
|
2017-03-31 11:12:10 -06:00
|
|
|
<dependency>
|
2017-04-13 15:53:09 -06:00
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-analysis</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-04-13 15:53:09 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
2017-04-13 16:09:28 -06:00
|
|
|
<artifactId>iBioSim-synthesis</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2017-04-13 15:53:09 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
2017-04-04 23:20:47 -06:00
|
|
|
|
2018-01-16 17:16:56 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async.sboldesigner</groupId>
|
|
|
|
|
<artifactId>SBOLDesigner</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1</version>
|
2018-01-16 17:16:56 -07:00
|
|
|
</dependency>
|
|
|
|
|
|
2017-03-28 10:04:06 -06:00
|
|
|
|
2017-03-27 16:45:35 -06:00
|
|
|
<dependency>
|
2017-08-18 10:49:11 -06:00
|
|
|
<groupId>de.unirostock.sems</groupId>
|
|
|
|
|
<artifactId>CombineArchive</artifactId>
|
|
|
|
|
<version>1.3.0</version>
|
2017-03-27 16:45:35 -06:00
|
|
|
</dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
|
2018-01-20 23:43:55 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.yuvimasory</groupId>
|
|
|
|
|
<artifactId>orange-extensions</artifactId>
|
|
|
|
|
<version>1.3.0</version>
|
2017-03-28 10:04:06 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
2017-04-04 23:20:47 -06:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2017-04-04 23:32:23 -06:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
</dependency>
|
2017-04-04 23:20:47 -06:00
|
|
|
|
2017-04-04 23:32:23 -06:00
|
|
|
<dependency>
|
2018-01-20 23:43:55 -07:00
|
|
|
<groupId>org.openrdf.sesame</groupId>
|
|
|
|
|
<artifactId>sesame-model</artifactId>
|
|
|
|
|
<version>2.8.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openrdf.sesame</groupId>
|
|
|
|
|
<artifactId>sesame-rio-rdfxml</artifactId>
|
|
|
|
|
<version>2.8.3</version>
|
2017-04-04 23:32:23 -06:00
|
|
|
</dependency>
|
2017-08-18 10:49:11 -06:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jdom</groupId>
|
|
|
|
|
<artifactId>jdom2</artifactId>
|
|
|
|
|
<version>2.0.6</version>
|
|
|
|
|
</dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
|
2017-03-26 20:36:49 -06:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|