pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>de.tu-darmstadt.informatik.tk.</groupId>
  5. <artifactId>scopviz</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>scopviz</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.target>1.8</maven.compiler.target>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>3.8.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.graphstream</groupId>
  24. <artifactId>gs-core</artifactId>
  25. <version>1.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.graphstream</groupId>
  29. <artifactId>gs-algo</artifactId>
  30. <version>1.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.graphstream</groupId>
  34. <artifactId>gs-ui</artifactId>
  35. <version>1.3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jxmapviewer</groupId>
  39. <artifactId>jxmapviewer2</artifactId>
  40. <version>2.2</version>
  41. </dependency>
  42. </dependencies>
  43. </project>