pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  7. <artifactId>assira.project</artifactId>
  8. <groupId>net.ranides</groupId>
  9. <version>2.7.0</version>
  10. </parent>
  11. <artifactId>assira.core8</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: runtime for JDK8</description>
  15. <properties>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>net.ranides</groupId>
  27. <artifactId>assira.core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.ranides</groupId>
  31. <artifactId>assira.junit</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.slf4j</groupId>
  35. <artifactId>slf4j-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>