pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.nicico</groupId>
  7. <artifactId>iranHolidays</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <configuration>
  15. <source>8</source>
  16. <target>8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.nicico.copper</groupId>
  25. <artifactId>copper-common</artifactId>
  26. <version>2.0</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
  29. <dependency>
  30. <groupId>com.ibm.icu</groupId>
  31. <artifactId>icu4j</artifactId>
  32. <version>65.1</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. <version>4.1.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fasterxml.jackson.core</groupId>
  42. <artifactId>jackson-databind</artifactId>
  43. <version>2.10.0</version>
  44. </dependency>
  45. </dependencies>
  46. </project>