97 lines
2.6 KiB
XML
97 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<artifactId>iBioSim-analysis</artifactId>
|
|
<parent>
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
<artifactId>iBioSim</artifactId>
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
<build>
|
|
<plugins>
|
|
<!-- Build an executable JAR -->
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>build-converter</id>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>edu.utah.ece.async.ibiosim.analysis.Analysis</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>assembly</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<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>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>3.6.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.joptimizer</groupId>
|
|
<artifactId>joptimizer</artifactId>
|
|
<version>3.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
<artifactId>iBioSim-dataModels</artifactId>
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
<artifactId>LEMA-verification</artifactId>
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.unirostock.sems</groupId>
|
|
<artifactId>CombineArchive</artifactId>
|
|
<version>1.3.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jdom</groupId>
|
|
<artifactId>jdom2</artifactId>
|
|
<version>2.0.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|