SpringBootMavenReleasePlugin-0.0.1.pom

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

Checksums

MD5 d70f1dbfa2e740daaa54de48ef87929c
SHA1 52a8af6547c6265164c7c64960ad6df30747331f
SHA256 1e8011fb9dfb1ae9e0f9d3d472144827feae3484ac2864c2770a8c09e47b3a30
SHA512 b9f5856c38dc8193fe4b27800d255e973738d94aa87eea3666818ce6e76ee39bf0b42aca89846e2b4b2b5ca137c898873c3c203db1d2a716719bc54cbe29c96c

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</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>SpringBootMavenReleasePlugin-0.0.1</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>