ZBD | f60356c | 2025-04-03 20:09:51 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.springframework.boot</groupId> |
| 7 | <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | <version>3.4.4</version> |
| 9 | <relativePath/> |
| 10 | </parent> |
| 11 | <groupId>com.example</groupId> |
| 12 | <artifactId>demo</artifactId> |
| 13 | <version>0.0.1-SNAPSHOT</version> |
| 14 | <name>demo</name> |
| 15 | <description>Demo project for Spring Boot</description> |
| 16 | <url/> |
| 17 | <licenses> |
| 18 | <license/> |
| 19 | </licenses> |
| 20 | <developers> |
| 21 | <developer/> |
| 22 | </developers> |
| 23 | <scm> |
| 24 | <connection/> |
| 25 | <developerConnection/> |
| 26 | <tag/> |
| 27 | <url/> |
| 28 | </scm> |
| 29 | <properties> |
| 30 | <java.version>17</java.version> |
| 31 | </properties> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.springframework.boot</groupId> |
| 35 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.springframework.boot</groupId> |
| 39 | <artifactId>spring-boot-starter-web</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-docker-compose</artifactId> |
| 45 | <scope>runtime</scope> |
| 46 | <optional>true</optional> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>com.mysql</groupId> |
| 50 | <artifactId>mysql-connector-j</artifactId> |
| 51 | <scope>runtime</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.springframework.boot</groupId> |
| 55 | <artifactId>spring-boot-starter-test</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>com.h2database</groupId> |
| 60 | <artifactId>h2</artifactId> |
| 61 | <scope>runtime</scope> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | |
| 74 | </project> |