暫無描述

pom.xml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. <version>3.4</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jgrapht</groupId>
  33. <artifactId>jgrapht-core</artifactId>
  34. <version>0.9.2</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jgrapht</groupId>
  38. <artifactId>jgrapht-ext</artifactId>
  39. <version>0.9.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.develop.officialjournal</groupId>
  43. <artifactId>database</artifactId>
  44. </dependency>
  45. </dependencies>
  46. <dependencyManagement>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.develop.officialjournal</groupId>
  50. <artifactId>database</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. </project>