77 lines
2.1 KiB
XML
77 lines
2.1 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.0.0-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
<build>
|
|
<plugins>
|
|
<!-- Install dependencies to local repository -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>install-openMali</id>
|
|
<phase>clean</phase>
|
|
<configuration>
|
|
<file>${basedir}/../lib/openmali.jar</file>
|
|
<repositoryLayout>default</repositoryLayout>
|
|
<groupId>org.openmali</groupId>
|
|
<artifactId>openmali</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>jar</packaging>
|
|
<generatePom>true</generatePom>
|
|
</configuration>
|
|
<goals>
|
|
<goal>install-file</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jmathml</groupId>
|
|
<artifactId>jmathml</artifactId>
|
|
<version>2.2.1</version>
|
|
</dependency>
|
|
|
|
<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>org.openmali</groupId>
|
|
<artifactId>openmali</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
<artifactId>iBioSim-dataModels</artifactId>
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
<artifactId>LEMA-verification</artifactId>
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|