Permalink
Cannot retrieve contributors at this time
<?xml version="1.0" encoding="UTF-8"?> | |
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
~ Copyright 2013 Thomas Letsch (contact@thomas-letsch.de) | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> | |
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-parent</artifactId> | |
<version>1.3.2.RELEASE</version> | |
</parent> | |
<groupId>org.moserp</groupId> | |
<artifactId>backend</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<docker.image.prefix>moserp</docker.image.prefix> | |
<java.version>1.8</java.version> | |
<spring-boot.version>1.3.2.RELEASE</spring-boot.version> | |
<spring-cloud-starter.version>Brixton.M4</spring-cloud-starter.version> | |
<jackson-datatype-money.version>0.2.0</jackson-datatype-money.version> | |
<moneta.version>1.0</moneta.version> | |
<zxing.version>3.2.0</zxing.version> | |
<rest-assured.version>2.4.1</rest-assured.version> | |
<lombok.version>1.16.6</lombok.version> | |
<mockito.version>1.10.19</mockito.version> | |
</properties> | |
<modules> | |
<module>common</module> | |
<module>infrastructure</module> | |
<module>environment-module</module> | |
<module>facility-module</module> | |
<module>product-module</module> | |
<module>customer-module</module> | |
<module>inventory-module</module> | |
<module>sales-module</module> | |
<module>order-module</module> | |
</modules> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-parent</artifactId> | |
<version>${spring-boot.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-starter-parent</artifactId> | |
<version>${spring-cloud-starter.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>${lombok.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>${slf4j.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.mockito</groupId> | |
<artifactId>mockito-core</artifactId> | |
<version>${mockito.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>test-jar</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>${java.version}</source> | |
<target>${java.version}</target> | |
<compilerArgument>-parameters</compilerArgument> | |
</configuration> | |
</plugin> | |
</plugins> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok-maven-plugin</artifactId> | |
<version>${lombok.version}</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>delombok</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<sourceDirectory>src/main/java</sourceDirectory> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>com.spotify</groupId> | |
<artifactId>docker-maven-plugin</artifactId> | |
<version>0.2.3</version> | |
<configuration> | |
<imageName>${docker.image.prefix}/${project.artifactId}</imageName> | |
<dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory> | |
<resources> | |
<resource> | |
<targetPath>/</targetPath> | |
<directory>${project.build.directory}</directory> | |
<include>${project.build.finalName}.jar</include> | |
</resource> | |
</resources> | |
</configuration> | |
<executions> | |
<execution> | |
<id>CreateImage</id> | |
<phase>package</phase> | |
<goals> | |
<goal>build</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> | |
<repositories> | |
<repository> | |
<id>spring-lib-releases</id> | |
<url>https://repo.spring.io/libs-release</url> | |
</repository> | |
<repository> | |
<id>spring-releases</id> | |
<url>https://repo.spring.io/release</url> | |
</repository> | |
<repository> | |
<id>spring-snapshots</id> | |
<url>https://repo.spring.io/snapshot</url> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>spring-milestones</id> | |
<url>https://repo.spring.io/milestone</url> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>spring-releases</id> | |
<url>https://repo.spring.io/libs-release</url> | |
</pluginRepository> | |
<pluginRepository> | |
<id>spring-snapshots</id> | |
<url>https://repo.spring.io/snapshot</url> | |
</pluginRepository> | |
<pluginRepository> | |
<id>spring-milestones</id> | |
<url>https://repo.spring.io/milestone</url> | |
</pluginRepository> | |
</pluginRepositories> | |
</project> |