123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?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>2.3.11.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.tsi.api</groupId>
- <artifactId>tsi-node-dir</artifactId>
- <version>0.0.1</version>
- <name>tsi-node-dir</name>
- <description>TSI Node Dir Application</description>
- <packaging>jar</packaging>
- <repositories>
- <repository>
- <id>oracle</id>
- <url>http://maven.jahia.org/maven2</url>
- </repository>
- </repositories>
- <properties>
- <java.version>1.8</java.version>
- <!-- jar 배포용 -->
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <!--main 함수가 있는 class 경로-->
- <start-class>com.tsi.api.server.TsiNodeDirApplication</start-class>
- <webapp.lib>C:\java\repository</webapp.lib>
- <maven.test.skip>true</maven.test.skip>
- </properties>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>com.tsi</groupId>-->
- <!-- <artifactId>tsi-common</artifactId>-->
- <!-- <version>1.0</version>-->
- <!-- <scope>system</scope>-->
- <!-- <systemPath>${webapp.lib}/tsi-common.jar</systemPath>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.1.3</version>
- </dependency>
- <dependency>
- <groupId>org.bgee.log4jdbc-log4j2</groupId>
- <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
- <version>1.16</version>
- </dependency>
- <!-- FOR DATABASE: START -->
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc7</artifactId>
- <version>12.1.0.2</version>
- <scope>system</scope>
- <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>tibero6</groupId>
- <artifactId>tibero6-jdbc</artifactId>
- <version>1.0.0</version>
- <scope>system</scope>
- <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>org.mariadb.jdbc</groupId>
- <artifactId>mariadb-java-client</artifactId>
- <version>2.7.0</version>
- </dependency>
- <!-- FOR DATABASE: END -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </dependency>
- <!-- FOR UTIL: START -->
- <dependency>
- <groupId>com.github.dozermapper</groupId>
- <artifactId>dozer-spring4</artifactId>
- <version>6.5.0</version>
- </dependency>
- <!-- FOR UTIL: END -->
- <!-- FOR JPA: START -->
- <!--<dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>-->
- <!-- FOR JPA: END -->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|