SpringBootMavenReleasePlugin-0.0.1-20200518.162945-2.pom

A simple console application making use of Spring Boot illustrating the Maven Release Plugin.

Checksums

MD5 631f7c9cf706994e65717928f59ed8dd
SHA1 1d8fedea1e12cc6d02f8d1bba15a4e177fa36f88
SHA256 4065a4e6ed0bc14fa72836f0814e06eaf16639b78caef0ffe60274355c2763f4
SHA512 8fbb4a9508e1774e3720668d1c181d681416ff93c3ae858e9781a01be0a02a02146cd3fdc098f2def64846a7a3bd5b2aeb89007dffc714f19ac14a8cd5d1690b

POM

<?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>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.2.5.RELEASE</version>
		<relativePath /> <!-- lookup parent from repository -->
	</parent>

	<groupId>com.javanibble.maven.examples</groupId>
	<artifactId>SpringBootMavenReleasePlugin</artifactId>
	<version>0.0.1-SNAPSHOT</version>

	<name>SpringBoot Maven Release Plugin</name>
	<description>A simple console application making use of Spring Boot illustrating the Maven Release Plugin.</description>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<java.version>11</java.version>
		<maven.compiler.source>${java.version}</maven.compiler.source>
		<maven.compiler.target>${java.version}</maven.compiler.target>
		<project.scm.id>github</project.scm.id>
	</properties>

	<scm>
		<connection>scm:git:https://github.com/javanibble/maven-release-plugin-example.git</connection>
		<developerConnection>scm:git:https://github.com/javanibble/maven-release-plugin-example.git</developerConnection>
		<url>https://github.com/javanibble/maven-release-plugin-example.git</url>
		<tag>HEAD</tag>
	</scm>

	<distributionManagement>
		<repository>
			<id>packagecloud.release</id>
			<url>packagecloud+https://packagecloud.io/javanibble/release</url>
		</repository>
		<snapshotRepository>
			<id>packagecloud.snapshot</id>
			<url>packagecloud+https://packagecloud.io/javanibble/snapshot</url>
		</snapshotRepository>
	</distributionManagement>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<extensions>
			<extension>
				<groupId>io.packagecloud.maven.wagon</groupId>
				<artifactId>maven-packagecloud-wagon</artifactId>
				<version>0.0.6</version>
			</extension>
		</extensions>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.22.0</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5.3</version>
			</plugin>
		</plugins>
	</build>

</project>