스프링 전환 계획 수립 (iss-cb35afc33813)
This commit is contained in:
parent
ff7d819ee1
commit
c079837b30
1 changed files with 61 additions and 0 deletions
61
spring-runtime/pom.xml
Normal file
61
spring-runtime/pom.xml
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
<?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 http://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.2.5</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
<groupId>com.runtime</groupId>
|
||||
<artifactId>spring-runtime</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Spring Runtime Parent</name>
|
||||
<description>스프링 프레임워크 전환 부모 POM</description>
|
||||
|
||||
<modules>
|
||||
<module>spring-runtime-core</module>
|
||||
<module>spring-runtime-api</module>
|
||||
<module>spring-runtime-service</module>
|
||||
<module>spring-runtime-repository</module>
|
||||
<module>spring-runtime-starter</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.runtime</groupId>
|
||||
<artifactId>spring-runtime-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.runtime</groupId>
|
||||
<artifactId>spring-runtime-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.runtime</groupId>
|
||||
<artifactId>spring-runtime-service</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.runtime</groupId>
|
||||
<artifactId>spring-runtime-repository</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue