pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <packaging>jar</packaging>
  12. <artifactId>farm-crm</artifactId>
  13. <description>
  14. 農家(農業法人)支援 CRM Server
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <!-- spring-doc -->
  24. <dependency>
  25. <groupId>org.springdoc</groupId>
  26. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  27. </dependency>
  28. <!-- Postgresql -->
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. </dependency>
  33. <!-- ビジネスモジュール -->
  34. <dependency>
  35. <groupId>jp.yamoto</groupId>
  36. <artifactId>farm-crm-biz</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>jp.yamoto</groupId>
  40. <artifactId>farm-quartz</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <resources>
  45. <resource>
  46. <directory>src/main/resources</directory>
  47. <filtering>true</filtering>
  48. </resource>
  49. </resources>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <executions>
  55. <execution>
  56. <goals>
  57. <goal>repackage</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>