| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <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>com.style24</groupId>
- <artifactId>root</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>com.style24.core</groupId>
- <artifactId>style24-core</artifactId>
- <version>0.0.1</version>
- <packaging>jar</packaging>
- <name>style24-core</name>
- <description>STYLE24 Core</description>
-
- <dependencies>
- <!-- /// WEB-INF lib -->
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-web-core</artifactId>
- <version>1.7.1-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-web-security</artifactId>
- <version>1.7.2-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-web-security-1.7.2-RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-web-parameter</artifactId>
- <version>1.7-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-web-rest</artifactId>
- <version>1.7.1-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-web-util</artifactId>
- <version>1.7-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.gagaframework</groupId>
- <artifactId>gagaframework-excel</artifactId>
- <version>1.7.1-RELEASE</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
- </dependency>
- <!--KCP-->
- <dependency>
- <groupId>com.kcp</groupId>
- <artifactId>kcp</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/jPpcliE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.kcp</groupId>
- <artifactId>ConnectionKCP</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/ConnectionKCP.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>kr.co.kcp.CT_CLI</groupId>
- <artifactId>CT_CLI</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/CtCli-1.0.6.jar</systemPath>
- </dependency>
- <!--USAFE 보증보험-->
- <dependency>
- <groupId>com.usafe.guarantee</groupId>
- <artifactId>usafe-guarantee</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/usafe.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.blowfishj</groupId>
- <artifactId>usafe-blowfishj</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/lib/usafe.jar</systemPath>
- </dependency>
- <!-- \\\ WEB-INF lib -->
- </dependencies>
-
- <build>
- <finalName>${project.name}-${project.version}</finalName>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- </build>
-
- </project>
|