pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  3. http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.v2gclarity.risev2g</groupId>
  6. <artifactId>parent</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <name>risev2g.parent</name>
  10. <modules>
  11. <module>RISE-V2G-Shared</module>
  12. <module>RISE-V2G-EVCC</module>
  13. <module>RISE-V2G-SECC</module>
  14. </modules>
  15. <build>
  16. <pluginManagement>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <configuration>
  22. <source>1.8</source>
  23. <target>1.8</target>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-eclipse-plugin</artifactId>
  29. <configuration>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </pluginManagement>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <version>3.8.1</version>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. </project>