Dépôt du be graphe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.insa.graphs</groupId>
  7. <artifactId>be-graphes-all</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <name>be-graphes-all</name>
  11. <properties>
  12. <jdk.version>1.14</jdk.version>
  13. <maven.compiler.source>${jdk.version}</maven.compiler.source>
  14. <maven.compiler.target>${jdk.version}</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.1</version>
  22. <configuration>
  23. <source>${jdk.version}</source>
  24. <target>${jdk.version}</target>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. <dependencies>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.12</version>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <modules>
  38. <module>be-graphes-model</module>
  39. <module>be-graphes-algos</module>
  40. <module>be-graphes-gui</module>
  41. </modules>
  42. </project>