pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <groupId>com.kym</groupId>
  8. <artifactId>charge</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>org.kym</groupId>
  12. <artifactId>admin</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.kym</groupId>
  16. <artifactId>service</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-validation</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.poi</groupId>
  34. <artifactId>poi-ooxml</artifactId>
  35. <version>${poi-ooxml.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.sun.mail</groupId>
  39. <artifactId>javax.mail</artifactId>
  40. <version>${javax.mail.version}</version>
  41. </dependency>
  42. </dependencies>
  43. <properties>
  44. <maven.compiler.source>21</maven.compiler.source>
  45. <maven.compiler.target>21</maven.compiler.target>
  46. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  47. </properties>
  48. <build>
  49. <resources>
  50. <resource>
  51. <directory>src/main/resources</directory>
  52. <filtering>false</filtering>
  53. <includes>
  54. <include>**/*.*</include>
  55. </includes>
  56. </resource>
  57. </resources>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>