No Description

pom.xml 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>corg.develop.officialjournal</groupId>
  4. <artifactId>extractor</artifactId>
  5. <version>1.0</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.3</version>
  12. <configuration>
  13. <source>1.8</source>
  14. <target>1.8</target>
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.develop</groupId>
  22. <artifactId>doDatabase</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.graphstream</groupId>
  27. <artifactId>gs-core</artifactId>
  28. <version>1.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jgrapht</groupId>
  32. <artifactId>jgrapht-core</artifactId>
  33. <version>0.9.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jgrapht</groupId>
  37. <artifactId>jgrapht-ext</artifactId>
  38. <version>0.9.1</version>
  39. </dependency>
  40. </dependencies>
  41. </project>