diff options
| author | realtradam <[email protected]> | 2024-07-03 20:56:38 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-07-03 20:56:38 -0400 |
| commit | 2878af20a144f0199ca8bd893db530b3dd3f3cda (patch) | |
| tree | a9c71587ee277997ce20780d0c5c16c92c47fe16 /pom.xml | |
| parent | 94212c208e86e0b52bd08a105ea3a019704a64f0 (diff) | |
| download | spring-blog-2878af20a144f0199ca8bd893db530b3dd3f3cda.tar.gz spring-blog-2878af20a144f0199ca8bd893db530b3dd3f3cda.zip | |
change base project, new init
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 86 |
1 files changed, 86 insertions, 0 deletions
@@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>3.3.1</version> + <relativePath/> <!-- lookup parent from repository --> + </parent> + <groupId>com.blog</groupId> + <artifactId>web</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>web</name> + <description>Demo project for Spring Boot</description> + <url/> + <licenses> + <license/> + </licenses> + <developers> + <developer/> + </developers> + <scm> + <connection/> + <developerConnection/> + <tag/> + <url/> + </scm> + <properties> + <java.version>17</java.version> + </properties> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-thymeleaf</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + <scope>runtime</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + +</project> |
