<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> <parent> <groupId>lcsb.mapviewer</groupId> <artifactId>parent</artifactId> <version>1.0</version> </parent> <artifactId>model-command</artifactId> <name>Model commands</name> <description>Tool with (undoable) commands that can be performed on model</description> <dependencies> <!-- the MapViewer model --> <dependency> <groupId>lcsb.mapviewer</groupId> <artifactId>model</artifactId> <version>1.0</version> </dependency> <!-- the MapViewer CellDEsigner converter --> <dependency> <groupId>lcsb.mapviewer</groupId> <artifactId>converter-CellDesigner</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> </dependencies> </project>