|
@@ -16,13 +16,6 @@
|
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>oracle</id>
|
|
|
- <url>https://maven.jahia.org/maven2</url>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
-
|
|
|
<properties>
|
|
|
<java.version>1.8</java.version>
|
|
|
<swagger.version>2.9.2</swagger.version>
|
|
@@ -39,10 +32,23 @@
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
<!--main 함수가 있는 class 경로-->
|
|
|
<start-class>com.its.api.ItsOpServerApplication</start-class>
|
|
|
- <webapp.lib>C:\DEV\ITS\01.WINDOWS\22.01.YONGIN\JAVA\repository</webapp.lib>
|
|
|
+<!-- <webapp.lib>C:\DEV\ITS\01.WINDOWS\22.01.YONGIN\JAVA\repository</webapp.lib>-->
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
</properties>
|
|
|
|
|
|
+<!-- <repositories>-->
|
|
|
+<!-- <repository>-->
|
|
|
+<!-- <id>local-repository</id>-->
|
|
|
+<!--<!– <url>file://${webapp.lib}/</url>–>-->
|
|
|
+<!-- <url>file://${basedir}/lib</url>-->
|
|
|
+<!-- </repository>-->
|
|
|
+<!-- <repository>-->
|
|
|
+<!-- <id>oracle</id>-->
|
|
|
+<!-- <name>ORACLE JDBC Repository</name>-->
|
|
|
+<!-- <url>http://repo.spring.io/plugins-release/</url>-->
|
|
|
+<!-- </repository>-->
|
|
|
+<!-- </repositories>-->
|
|
|
+
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
@@ -56,6 +62,18 @@
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
+ <artifactId>ojdbc7</artifactId>
|
|
|
+ <version>12.1.0.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.tibero</groupId>
|
|
|
+ <artifactId>tibero6-jdbc</artifactId>
|
|
|
+ <version>14</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
<dependency>
|
|
|
<groupId>commons-io</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
@@ -80,22 +98,6 @@
|
|
|
<version>${swagger.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <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.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
@@ -336,6 +338,24 @@
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
+
|
|
|
+<!-- <plugin>-->
|
|
|
+<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
+<!-- <artifactId>maven-war-plugin</artifactId>-->
|
|
|
+<!-- <configuration>-->
|
|
|
+<!-- <webResources>-->
|
|
|
+<!-- <resource>-->
|
|
|
+<!-- <directory>${webapp.lib}/</directory>-->
|
|
|
+<!-- <targetPath>WEB-INF/lib</targetPath>-->
|
|
|
+<!-- <includes>-->
|
|
|
+<!-- <include>**/ojdbc7-12.1.0.2.jar</include>-->
|
|
|
+<!-- <include>**/tibero6-jdbc-14.jar</include>-->
|
|
|
+<!-- </includes>-->
|
|
|
+<!-- </resource>-->
|
|
|
+<!-- </webResources>-->
|
|
|
+<!-- </configuration>-->
|
|
|
+<!-- </plugin>-->
|
|
|
+
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|