pom.xml 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <build>
  5. <plugins>
  6. <plugin>
  7. <groupId>org.apache.maven.plugins</groupId>
  8. <artifactId>maven-compiler-plugin</artifactId>
  9. <configuration>
  10. <source>1.8</source>
  11. <target>1.8</target>
  12. </configuration>
  13. </plugin>
  14. </plugins>
  15. </build>
  16. <modelVersion>4.0.0</modelVersion>
  17. <groupId>com.zipcodewilmington</groupId>
  18. <artifactId>SimpleCrypt</artifactId>
  19. <version>1.0-SNAPSHOT</version>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.12</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>