Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 4.84 KiB
<?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>

	<groupId>lcsb.mapviewer</groupId>
	<artifactId>parent</artifactId>
	<version>1.0</version>
	<packaging>pom</packaging>

	<name>parent MapViewer</name>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

		<log4j.version>1.2.17</log4j.version>

		<xercesImp.version>2.12.0</xercesImp.version>

		<jaxws.version>2.3.0</jaxws.version>
		<jaxws-api.version>2.3.0</jaxws-api.version>
		<jaxb.version>2.3.0</jaxb.version>
		<txw2.version>2.3.0</txw2.version>

		<miriam-lib.version>1.1.6</miriam-lib.version>

		<apache.httpcomponents.version>4.5.6</apache.httpcomponents.version>
		<apache.httpcomponents-core.version>4.4.10</apache.httpcomponents-core.version>
		<apache.poi.version>3.16</apache.poi.version>

		<mockito.version>2.23.0</mockito.version>

		<springframework.version>4.3.19.RELEASE</springframework.version>
		<springframework.security.version>4.2.8.RELEASE</springframework.security.version>
		<springframework.webflow.version>2.4.8.RELEASE</springframework.webflow.version>
		<springframework.boot.version>1.5.16.RELEASE</springframework.boot.version>


		<libsbml.version>1.0</libsbml.version>

		<commons-io.version>2.6</commons-io.version>

		<apache.commons-lang3.version>3.8.1</apache.commons-lang3.version>

		<commons-cli.version>1.4</commons-cli.version>

		<batik.version>1.10</batik.version>
		<xml-apis.version>1.4.01</xml-apis.version>

		<itext.version>5.5.13</itext.version>

		<libsbgn.version>0.2</libsbgn.version>

		<hibernate.version>5.3.6.Final</hibernate.version>
		<jboss-logging.version>3.3.2.Final</jboss-logging.version>
		<byte-buddy.version>1.9.0</byte-buddy.version>

		<pathvisio.version>3.2.0</pathvisio.version>

		<flyway.version>5.2.0</flyway.version>

		<commons-net.version>3.6</commons-net.version>

		<postgresql-jdbc.version>42.2.5</postgresql-jdbc.version>

		<hikari.version>3.2.0</hikari.version>
		<c3p0.version>0.9.1.2</c3p0.version>

		<cglib.version>3.2.8</cglib.version>

		<gson.version>2.8.5</gson.version>

		<rs-jax.version>1.1.1</rs-jax.version>

		<jersey.version>1.19.4</jersey.version>

		<jackson.version>2.9.7</jackson.version>

		<servlet-api.version>3.1.0</servlet-api.version>

		<primafaces.version>6.2</primafaces.version>

		<jsf.version>2.2.18</jsf.version>

		<unboundid-ldapsdk.version>4.0.8</unboundid-ldapsdk.version>

		<jstl.version>1.2</jstl.version>

		<commons-fileupload.version>1.3.3</commons-fileupload.version>

		<commons-validator.version>1.4.0</commons-validator.version>

		<jsbml.version>1.4</jsbml.version>

		<chebi-ws.version>2.4</chebi-ws.version>

		<celldesigner.version>4.4</celldesigner.version>

		<reflections.version>0.9.9-RC1</reflections.version>

		<osgi.version>1.0.0</osgi.version>
		<junit.version>4.12</junit.version>

		<surefire-api.version>2.22.1</surefire-api.version>

		<surefire.rerunFailingTestsCount>4</surefire.rerunFailingTestsCount>
	</properties>

	<repositories>
		<repository>
			<id>central</id>
			<url>http://repo.maven.apache.org/maven2/</url>
		</repository>
		<repository>
			<id>prime-repo</id>
			<name>Prime Repo</name>
			<url>http://repository.primefaces.org</url>
		</repository>
	</repositories>

	<dependencies>
		<dependency>
			<groupId>org.apache.maven.surefire</groupId>
			<artifactId>surefire-api</artifactId>
			<version>${surefire-api.version}</version>
		</dependency>
	</dependencies>
	<modules>
		<module>model</module>
		<module>commons</module>
		<module>persist</module>
		<module>converter-CellDesigner</module>
		<module>converter-SBGNML</module>
		<module>converter-graphics</module>
		<module>annotation</module>
		<module>service</module>
		<module>reactome</module>
		<module>web</module>
		<module>model-command</module>
		<module>pathvisio</module>
		<module>quadTrees</module>
		<module>converter</module>
		<module>CellDesigner-plugin</module>
		<module>editor</module>
		<module>rest-api</module>
		<module>frontend-js</module>
		<module>converter-sbml</module>
	</modules>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>1.8</source>
						<target>1.8</target>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>${surefire-api.version}</version>
				<configuration>
					<useSystemClassLoader>false</useSystemClassLoader>
					<surefire.rerunFailingTestsCount>4</surefire.rerunFailingTestsCount>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>