No Description

pom.xml 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>org.graphstream</groupId>
  22. <artifactId>gs-core</artifactId>
  23. <version>1.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jgrapht</groupId>
  27. <artifactId>jgrapht-core</artifactId>
  28. <version>0.9.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jgrapht</groupId>
  32. <artifactId>jgrapht-ext</artifactId>
  33. <version>0.9.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.develop.officialjournal</groupId>
  37. <artifactId>database</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.develop.officialjournal</groupId>
  44. <artifactId>database</artifactId>
  45. <version>1.0</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>