mirror of
https://github.com/valitydev/spring-boot-starter-parent.git
synced 2024-11-06 08:25:22 +00:00
68 lines
2.5 KiB
XML
68 lines
2.5 KiB
XML
<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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.4.3.RELEASE</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>pom</packaging>
|
|
<groupId>com.rbkmoney</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.4.3.RELEASE</version>
|
|
<description>RBKmoney parent pom</description>
|
|
<distributionManagement>
|
|
<downloadUrl>
|
|
http://java-nexus.msk1.rbkmoney.net:8081/nexus/content/groups/public
|
|
</downloadUrl>
|
|
<repository>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
<id>releases</id>
|
|
<name>RBKmoney releases repository</name>
|
|
<url>
|
|
http://java-nexus.msk1.rbkmoney.net:8081/nexus/content/repositories/releases
|
|
</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<uniqueVersion>true</uniqueVersion>
|
|
<id>snapshots</id>
|
|
<name>RBKmoney snapshots repository</name>
|
|
<url>
|
|
http://java-nexus.msk1.rbkmoney.net:8081/nexus/content/repositories/snapshots
|
|
</url>
|
|
<layout>default</layout>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|