labs-cloud-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.brinkus.labs</groupId>
<artifactId>labs-cloud-parent</artifactId>
<version>2.0.0</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.brinkus.labs</groupId>
<artifactId>labs-parent</artifactId>
<version>1.2.0</version>
<relativePath>../../labs-parent</relativePath>
</parent>
<groupId>com.brinkus.labs</groupId>
<artifactId>labs-cloud-parent</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>labs-cloud-parent</name>
<description>Build dependencies for Spring Cloud projects</description>
<url>https://github.com/bbrinkus/labs-cloud</url>
<licenses>
<license>
<name>GNU General Public License (GPL) version 3.0</name>
<url>http://www.gnu.org/licenses/</url>
<distribution>repo</distribution>
<comments>
Copyright (C) 2016 Balazs Brinkus
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
</comments>
</license>
</licenses>
<scm>
<url>https://github.com/bbrinkus/labs-cloud</url>
<connection>scm:git:git://github.com/labs-cloud.git</connection>
<developerConnection>scm:git:ssh://git@github.com/labs-cloud.git</developerConnection>
</scm>
<developers>
<developer>
<name>Balazs Brinkus</name>
<email>balazs@brinkus.com</email>
<url>http://www.brinkus.com</url>
</developer>
</developers>
<properties>
<!-- Build plugins versions -->
<replacer-maven-plugin.version>1.5.3</replacer-maven-plugin.version>
<docker-maven-plugin.version>1.0.0</docker-maven-plugin.version>
<!-- Dependencies versions -->
<commons-io.version>2.5</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-validator.version>1.6</commons-validator.version>
<springfox.version>2.7.0</springfox.version>
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
<spring-cloud.version>Edgware.RELEASE</spring-cloud.version>
<!-- Test dependencies versions -->
<json-path.version>2.4.0</json-path.version>
<rest-assured.version>2.9.0</rest-assured.version>
<mockito.version>2.7.13</mockito.version>
<hamcrest.version>1.3</hamcrest.version>
<objenesis.version>2.5.1</objenesis.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>${replacer-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>${commons-validator.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${springfox.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${springfox.version}</version>
</dependency>
<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-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${json-path.version}</version>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured.version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>${objenesis.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>