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-synthesis</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>
|
2017-04-13 15:53:09 -06:00
|
|
|
<packaging>jar</packaging>
|
2018-11-12 15:19:00 -07:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>JSBML-SNAPSHOT</id>
|
|
|
|
|
<name>The JSBML Snapshot repository</name>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<properties>
|
|
|
|
|
<antlr.version>4.7</antlr.version>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2017-03-28 10:04:06 -06:00
|
|
|
<dependencies>
|
2018-11-12 15:19:00 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
|
|
|
<artifactId>LEMA-verification</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2018-11-12 15:19:00 -07:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2017-03-28 10:04:06 -06:00
|
|
|
<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-27 14:28:28 -06:00
|
|
|
</dependency>
|
2018-11-12 15:19:00 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.sbml.jsbml</groupId>
|
|
|
|
|
<artifactId>jsbml</artifactId>
|
2018-11-21 14:21:57 -07:00
|
|
|
<version>1.5-SNAPSHOT</version>
|
2018-11-12 15:19:00 -07:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
|
<version>1.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.sbolstandard</groupId>
|
|
|
|
|
<artifactId>libSBOLj</artifactId>
|
2019-08-07 23:20:07 -06:00
|
|
|
<version>2.4.1-SNAPSHOT</version>
|
2019-01-24 18:37:50 -07:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.utah.ece.async</groupId>
|
|
|
|
|
<artifactId>iBioSim-conversion</artifactId>
|
2020-05-10 13:37:36 -06:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2018-11-12 15:19:00 -07:00
|
|
|
</dependency>
|
2017-03-26 20:36:49 -06:00
|
|
|
</dependencies>
|
2018-11-12 15:19:00 -07:00
|
|
|
<issueManagement>
|
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
|
<url>https://github.com/MyersResearchGroup/iBioSim/issues</url>
|
|
|
|
|
</issueManagement>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.21.0</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<grammars>Verilog2001.g4</grammars>
|
|
|
|
|
<visitor>true</visitor>
|
|
|
|
|
<listener>true</listener>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
2019-08-18 12:16:34 -06:00
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.synthesis.SBOLTechMapping.SBOLTechMapRunner</mainClass>
|
2018-11-12 15:19:00 -07:00
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2019-08-07 23:20:07 -06:00
|
|
|
<!-- <plugin>
|
2019-08-18 12:16:34 -06:00
|
|
|
<manifest>
|
2019-08-07 23:20:07 -06:00
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.synthesis.GateGenerator.GateGenerationRunner</mainClass>
|
2019-08-18 12:16:34 -06:00
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.synthesis.SBOLTechMapping.SBOLTechMapRunner</mainClass>
|
|
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.synthesis.VerilogCompiler.VerilogRunner</mainClass>
|
|
|
|
|
</manifest
|
2019-08-07 23:20:07 -06:00
|
|
|
</plugin> -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>build-gateGen</id>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
2019-08-18 12:16:34 -06:00
|
|
|
<mainClass>edu.utah.ece.async.ibiosim.synthesis.SBOLTechMapping.SBOLTechMapRunner</mainClass>
|
2019-08-07 23:20:07 -06:00
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
<descriptorRefs>
|
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
|
</descriptorRefs>
|
|
|
|
|
</configuration>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>assembly</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2018-11-12 15:19:00 -07:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2017-03-26 20:36:49 -06:00
|
|
|
</project>
|