| | |
| | | <parent> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-parent</artifactId> |
| | | <version>3.0.5</version> |
| | | <version>2.5.15</version> |
| | | <relativePath/> <!-- lookup parent from repository --> |
| | | </parent> |
| | | |
| | |
| | | <artifactId>web_01</artifactId> |
| | | <version>0.0.1-SNAPSHOT</version> |
| | | <name>web_01</name> |
| | | <packaging>war</packaging> |
| | | <description>web_01</description> |
| | | |
| | | <properties> |
| | | <java.version>17</java.version> |
| | | <java.version>1.8</java.version> |
| | | </properties> |
| | | <dependencies> |
| | | <dependency> |
| | |
| | | <dependency> |
| | | <groupId>org.mybatis.spring.boot</groupId> |
| | | <artifactId>mybatis-spring-boot-starter</artifactId> |
| | | <version>3.0.0</version> |
| | | <version>2.3.1</version> |
| | | |
| | | </dependency> |
| | | |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>com.mysql</groupId>--> |
| | | <!-- <artifactId>mysql-connector-j</artifactId>--> |
| | | <!-- <scope>runtime</scope>--> |
| | | <!-- </dependency>--> |
| | | <dependency> |
| | | <groupId>com.mysql</groupId> |
| | | <artifactId>mysql-connector-j</artifactId> |
| | | <scope>runtime</scope> |
| | | <groupId>mysql</groupId> |
| | | <artifactId>mysql-connector-java</artifactId> |
| | | <version>8.0.33</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.projectlombok</groupId> |
| | |
| | | |
| | | <build> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>3.0.5</version> |
| | | <configuration> |
| | | <excludes> |
| | | <exclude> |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | </exclude> |
| | | </excludes> |
| | | </configuration> |
| | | </plugin> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> |
| | | <!-- <version>3.0.5</version>--> |
| | | <!-- <configuration>--> |
| | | <!-- <excludes>--> |
| | | <!-- <exclude>--> |
| | | <!-- <groupId>org.projectlombok</groupId>--> |
| | | <!-- <artifactId>lombok</artifactId>--> |
| | | <!-- </exclude>--> |
| | | <!-- </excludes>--> |
| | | <!-- </configuration>--> |
| | | <!-- </plugin>--> |
| | | </plugins> |
| | | </build> |
| | | |