pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>net.ranides</groupId>
  6. <artifactId>assira.project</artifactId>
  7. <version>2.8.3-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>assira.drafts</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.groupId}:${project.artifactId}</name>
  12. <description>assira: general purpose java library: sandbox</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.1</version>
  19. <configuration>
  20. <compilerVersion>1.8</compilerVersion>
  21. <source>1.8</source>
  22. <target>1.8</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>net.ranides</groupId>
  30. <artifactId>assira.core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.ranides</groupId>
  34. <artifactId>assira.core8</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>net.ranides</groupId>
  38. <artifactId>assira.commons</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>net.ranides</groupId>
  42. <artifactId>assira.junit</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.linguafranca.pwdb</groupId>
  46. <artifactId>KeePassJava2</artifactId>
  47. <version>2.1.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.ow2.asm</groupId>
  56. <artifactId>asm-util</artifactId>
  57. <version>7.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax</groupId>
  61. <artifactId>javaee-api</artifactId>
  62. <version>7.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.projectlombok</groupId>
  66. <artifactId>lombok</artifactId>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>