pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>fmi23tutors</groupId>
  4. <artifactId>fmi23block1</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <dependencies>
  7. <!-- https://mvnrepository.com/artifact/org.ow2.sat4j/org.ow2.sat4j.core -->
  8. <dependency>
  9. <groupId>org.ow2.sat4j</groupId>
  10. <artifactId>org.ow2.sat4j.core</artifactId>
  11. <version>2.3.4</version>
  12. </dependency>
  13. <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core -->
  14. <dependency>
  15. <groupId>org.jgrapht</groupId>
  16. <artifactId>jgrapht-core</artifactId>
  17. <version>1.5.2</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-io -->
  20. <dependency>
  21. <groupId>org.jgrapht</groupId>
  22. <artifactId>jgrapht-io</artifactId>
  23. <version>1.5.2</version>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <configuration>
  32. <source>8</source>
  33. <target>8</target>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>