<?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> <springframework.version>4.2.0.RELEASE</springframework.version> <springframework.security.version>4.0.2.RELEASE</springframework.security.version> <springframework.webflow.version>2.4.2.RELEASE</springframework.webflow.version> <xercesImp.version>2.11.0</xercesImp.version> <xerces.version>2.4.0</xerces.version> <xml-apis.version>1.4.01</xml-apis.version> <primafaces.version>4.0</primafaces.version> <primafaces.themes.version>1.0.8</primafaces.themes.version> <primefaces-extensions.version>0.7.1</primefaces-extensions.version> <jsf.version>2.1.7</jsf.version> <jstl.version>1.2</jstl.version> <servlet-api.version>2.5</servlet-api.version> <jersey.version>1.18.1</jersey.version> <rs-jax.version>1.1.1</rs-jax.version> <log4j.version>1.2.17</log4j.version> <apache.commons-lang3.version>3.1</apache.commons-lang3.version> <apache.httpcomponents.version>4.4</apache.httpcomponents.version> <commons-io.version>2.4</commons-io.version> <commons-cli.version>1.2</commons-cli.version> <commons-net.version>3.5</commons-net.version> <commons-fileupload.version>1.2.2</commons-fileupload.version> <commons-validator.version>1.4.0</commons-validator.version> <jaxb.version>2.2.7</jaxb.version> <batik.version>1.8</batik.version> <itext.version>5.5.6</itext.version> <gson.version>2.2.2</gson.version> <chebi-ws.version>2.2.2</chebi-ws.version> <miriam-lib.version>1.1.5</miriam-lib.version> <celldesigner.version>4.4</celldesigner.version> <libsbml.version>1.0</libsbml.version> <libsbgn.version>0.2</libsbgn.version> <hibernate.version>4.1.0.Final</hibernate.version> <c3p0.version>0.9.1.2</c3p0.version> <reflections.version>0.9.9-RC1</reflections.version> <postgresql-jdbc.version>9.1-901.jdbc4</postgresql-jdbc.version> <pathvisio.version>3.2.0</pathvisio.version> <osgi.version>1.0.0</osgi.version> <cglib.version>2.2.2</cglib.version> <mockito.version>1.10.19</mockito.version> </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> <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>console</module> <module>reactome</module> <module>web</module> <module>model-command</module> <module>pathvisio</module> <module>quadTrees</module> <module>converter</module> <module>comparison</module> <module>CellDesigner-plugin</module> <module>editor</module> <module>rest-api</module> <module>frontend-js</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> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.18.1</version> <configuration> <aggregate>true</aggregate> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> </project>