pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>0.0.1-SNAPSHOT</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. <version>3.1.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.poi</groupId>
  35. <artifactId>poi-ooxml</artifactId>
  36. <version>5.2.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sun.mail</groupId>
  40. <artifactId>javax.mail</artifactId>
  41. <version>1.6.2</version>
  42. </dependency>
  43. </dependencies>
  44. <properties>
  45. <maven.compiler.source>17</maven.compiler.source>
  46. <maven.compiler.target>17</maven.compiler.target>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48. </properties>
  49. <build>
  50. <resources>
  51. <resource>
  52. <directory>src/main/resources</directory>
  53. <filtering>false</filtering>
  54. <includes>
  55. <include>**/*.*</include>
  56. </includes>
  57. </resource>
  58. </resources>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>