pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.9.0</version>
  10. </parent>
  11. <artifactId>assira.xls</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: excel support</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>net.ranides</groupId>
  23. <artifactId>assira.commons</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>net.ranides</groupId>
  27. <artifactId>assira.core</artifactId>
  28. <type>test-jar</type>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.ranides</groupId>
  32. <artifactId>assira.junit</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.poi</groupId>
  36. <artifactId>poi</artifactId>
  37. <version>5.4.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.poi</groupId>
  41. <artifactId>poi-ooxml</artifactId>
  42. <version>5.4.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.code.findbugs</groupId>
  54. <artifactId>annotations</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. </dependencies>
  61. </project>