iBioSim/learn/pom.xml
Chris Myers 515c7634a2 Remove objects with same displayId before creating new
Fix run deadlock on errors
2020-05-10 13:37:36 -06:00

71 lines
1.9 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-learn</artifactId>
<parent>
<groupId>edu.utah.ece.async</groupId>
<version>3.1.0-SNAPSHOT</version>
<relativePath>../</relativePath>
<artifactId>iBioSim</artifactId>
</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.learn.Learn</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>edu.utah.ece.async</groupId>
<artifactId>iBioSim-analysis</artifactId>
<version>3.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>