pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.3.0</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <groupId>net.ranides</groupId>
  11. <artifactId>assira.drafts</artifactId>
  12. <packaging>jar</packaging>
  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</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.ranides</groupId>
  34. <artifactId>assira.jdk11</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>net.ranides</groupId>
  38. <artifactId>assira.junit</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.linguafranca.pwdb</groupId>
  42. <artifactId>KeePassJava2</artifactId>
  43. <version>2.1.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-simple</artifactId>
  53. <version>1.7.13</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.ow2.asm</groupId>
  58. <artifactId>asm-util</artifactId>
  59. <version>7.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>javax</groupId>
  63. <artifactId>javaee-api</artifactId>
  64. <version>7.0</version>
  65. </dependency>
  66. </dependencies>
  67. </project>