You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.5 KiB
XML
94 lines
2.5 KiB
XML
<?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>
|
|
<groupId>cokr.xit.app</groupId>
|
|
<artifactId>fims-web-all</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>fims-web-all</name>
|
|
<description>과태료통합관리시스템 웹리소스 전체</description>
|
|
<packaging>jar</packaging>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>maven-public</id>
|
|
<url>https://nas.xit.co.kr:8888/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>maven-public</id>
|
|
<url>https://nas.xit.co.kr:8888/repository/maven-public/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>cokr.xit.app</groupId>
|
|
<artifactId>app-support-web</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<directory>${basedir}/target</directory>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/webapp/resources</directory>
|
|
<targetPath>META-INF/resources/webjars</targetPath>
|
|
</resource>
|
|
<resource>
|
|
<directory>${basedir}/src/main/webapp/WEB-INF/jsp</directory>
|
|
<targetPath>META-INF/resources/WEB-INF/jsp</targetPath>
|
|
</resource>
|
|
</resources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<includeEmptyDirs>true</includeEmptyDirs>
|
|
<includes>
|
|
<include>META-INF/resources/webjars/**</include>
|
|
<include>META-INF/resources/WEB-INF/jsp/**</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- Nexus deploy -->
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>maven-snapshot</id>
|
|
<url>https://nas.xit.co.kr:8888/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
<id>maven-release</id>
|
|
<url>https://nas.xit.co.kr:8888/repository/maven-releases/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<!-- Nexus deploy -->
|
|
|
|
</project> |