pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <parent>
  6. <groupId>jp.yamoto</groupId>
  7. <artifactId>farm</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>farm-quartz</artifactId>
  12. <packaging>jar</packaging>
  13. <description>
  14. quartz タイミングタスク
  15. </description>
  16. <dependencies>
  17. <!-- タイミングタスク -->
  18. <dependency>
  19. <groupId>org.quartz-scheduler</groupId>
  20. <artifactId>quartz</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>com.mchange</groupId>
  24. <artifactId>c3p0</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <!-- Postgresql -->
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. </dependency>
  33. <!-- Farm Common Biz-->
  34. <dependency>
  35. <groupId>jp.yamoto</groupId>
  36. <artifactId>farm-common-biz</artifactId>
  37. </dependency>
  38. <!-- Farm Common-->
  39. <dependency>
  40. <groupId>jp.yamoto</groupId>
  41. <artifactId>farm-common</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <!-- SFTP support -->
  49. <dependency>
  50. <groupId>com.jcraft</groupId>
  51. <artifactId>jsch</artifactId>
  52. <version>0.1.55</version>
  53. </dependency>
  54. <!-- AWS SDK for S3 -->
  55. <dependency>
  56. <groupId>software.amazon.awssdk</groupId>
  57. <artifactId>s3</artifactId>
  58. <version>2.25.14</version>
  59. </dependency>
  60. <!-- AWS SDK for SES (Simple Email Service) -->
  61. <dependency>
  62. <groupId>software.amazon.awssdk</groupId>
  63. <artifactId>ses</artifactId>
  64. <version>2.25.14</version>
  65. </dependency>
  66. <!-- XML处理 -->
  67. <dependency>
  68. <groupId>com.fasterxml.jackson.dataformat</groupId>
  69. <artifactId>jackson-dataformat-xml</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <resources>
  74. <resource>
  75. <directory>src/main/resources</directory>
  76. <filtering>true</filtering>
  77. </resource>
  78. </resources>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. <executions>
  84. <execution>
  85. <goals>
  86. <goal>repackage</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>