Some crypto for starters

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>com.zipcodewilmington</groupId>
  7. <artifactId>SimpleCrypt</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <build>
  10. <finalName>example-project</finalName>
  11. <pluginManagement>
  12. <plugins>
  13. <!-- v. useful! m2eclipse sometimes fails to see it as a
  14. dynamic web app project in Eclipse. Declaring this plugin
  15. would help eclipse recognize its nature (i.e. a Java
  16. project requesting at least JDK1.7+ -->
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>1.7</source>
  22. <target>1.7</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </pluginManagement>
  27. </build>
  28. <dependencies>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>RELEASE</version>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. </project>