pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-sankin</artifactId>
  13. <description>
  14. 農家(農業法人)支援 - 新・産直 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-sankin-biz</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <resources>
  46. <resource>
  47. <directory>src/main/resources</directory>
  48. <filtering>true</filtering>
  49. </resource>
  50. </resources>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <goals>
  58. <goal>repackage</goal>
  59. </goals>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>