<?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">
|
<parent>
|
<groupId>com.vci.ubcs</groupId>
|
<artifactId>ubcs-service</artifactId>
|
<version>3.0.1.RELEASE</version>
|
</parent>
|
<artifactId>ubcs-webservice</artifactId>
|
<name>${project.artifactId}</name>
|
<version>${bladex.project.version}</version>
|
<packaging>jar</packaging>
|
|
<modelVersion>4.0.0</modelVersion>
|
<dependencies>
|
<dependency>
|
<groupId>org.apache.cxf</groupId>
|
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
|
<version>3.3.1</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>javax.validation</groupId>
|
<artifactId>validation-api</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.ubcs</groupId>
|
<artifactId>ubcs-util-api</artifactId>
|
<version>3.0.1.RELEASE</version>
|
<scope>compile</scope>
|
</dependency>
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<skip>true</skip>
|
<finalName>${project.name}</finalName>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|