Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 1.71 KiB
<?xml version="1.0"?>
<project 
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
		http://maven.apache.org/xsd/maven-4.0.0.xsd" 
	xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>lcsb.mapviewer</groupId>
		<artifactId>parent</artifactId>
		<version>1.0</version>
	</parent>
	
	<artifactId>comparison</artifactId>
	<name>comparison</name>
	<url>http://maven.apache.org</url>

	<repositories>
		<repository>
			<id>central</id>
			<url>http://repo.maven.apache.org/maven2/</url>
		</repository>
	</repositories>

	<dependencies>
	
	<!-- dependency from the MapViewer model -->
		<dependency>
			<groupId>lcsb.mapviewer</groupId>
			<artifactId>model</artifactId>
			<version>1.0</version>
		</dependency>
		
	<!-- annotations -->
		<dependency>
			<groupId>lcsb.mapviewer</groupId>
			<artifactId>annotation</artifactId>
			<version>1.0</version>
		</dependency>
		
	<!-- dependency from the MapViewer cell designer parser-->
		<dependency>
			<groupId>lcsb.mapviewer</groupId>
			<artifactId>converter-CellDesigner</artifactId>
			<version>1.0</version>
		</dependency>
		
	<!-- dependency from the MapViewer graphics converter-->
		<dependency>
			<groupId>lcsb.mapviewer</groupId>
			<artifactId>converter-graphics</artifactId>
			<version>1.0</version>
		</dependency>
		
	<!-- Log4J -->
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>${log4j.version}</version>
		</dependency>

	<!-- Spring -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${springframework.version}</version>
		</dependency>
	
	</dependencies>
</project>