<?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>
|
<packaging>war</packaging>
|
<groupId>com.farriver.bwf.web</groupId>
|
<artifactId>web</artifactId>
|
<version>${revision}</version>
|
<parent>
|
<artifactId>bwf</artifactId>
|
<groupId>com.farriver.bwf</groupId>
|
<version>${revision}</version>
|
<relativePath>../pom.xml</relativePath>
|
</parent>
|
<dependencies>
|
<dependency>
|
<groupId>com.farriver.bwf.common</groupId>
|
<artifactId>common</artifactId>
|
<version>${revision}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.farriver.bwf.data.transferobject</groupId>
|
<artifactId>transferobject</artifactId>
|
<version>${revision}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.farriver.bwf.data.master</groupId>
|
<artifactId>master</artifactId>
|
<version>${revision}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.farriver.bwf.service</groupId>
|
<artifactId>service</artifactId>
|
<version>${revision}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.farriver.bwf.service.extend</groupId>
|
<artifactId>extend</artifactId>
|
<version>${revision}</version>
|
</dependency>
|
</dependencies>
|
<build>
|
<finalName>bwf</finalName>
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.xml</include>
|
</includes>
|
</resource>
|
</resources>
|
<pluginManagement>
|
<plugins>
|
<plugin>
|
<artifactId>maven-war-plugin</artifactId>
|
<version>3.4.0</version>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring-boot.version}</version>
|
<configuration>
|
<mainClass>com.farriver.bwf.WebApplication</mainClass>
|
</configuration>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</pluginManagement>
|
</build>
|
</project>
|