pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>car-wash</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>org.kym</groupId>
  12. <artifactId>car-wash-admin</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.kym</groupId>
  16. <artifactId>car-wash-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>jakarta.mail</artifactId>
  41. <version>2.0.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.velocity</groupId>
  45. <artifactId>velocity</artifactId>
  46. <version>1.7</version>
  47. </dependency>
  48. </dependencies>
  49. <properties>
  50. <maven.compiler.source>21</maven.compiler.source>
  51. <maven.compiler.target>21</maven.compiler.target>
  52. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  53. </properties>
  54. <build>
  55. <resources>
  56. <resource>
  57. <directory>src/main/resources</directory>
  58. <filtering>false</filtering>
  59. <includes>
  60. <include>**/*.*</include>
  61. </includes>
  62. </resource>
  63. </resources>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>