wavefront-spring-boot-build
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.wavefront</groupId>
<artifactId>wavefront-spring-boot-build</artifactId>
<version>3.2.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wavefront</groupId>
<artifactId>wavefront-spring-boot-build</artifactId>
<version>3.2.0</version>
<packaging>pom</packaging>
<name>Wavefront Spring Boot Build</name>
<description>Wavefront by VMware integration for Spring Boot</description>
<url>https://www.wavefront.com</url>
<organization>
<name>VMware, Inc.</name>
<url>https://www.vmware.com</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<connection>${git.connection}</connection>
<developerConnection>${git.developerConnection}</developerConnection>
<url>${git.url}</url>
<tag>v3.2.0</tag>
</scm>
<developers>
<developer>
<name>Clement Pang</name>
<email>clement@wavefront.com</email>
<organization>Wavefront</organization>
<organizationUrl>https://www.wavefront.com</organizationUrl>
</developer>
</developers>
<properties>
<git.url>https://github.com/wavefrontHQ/wavefront-spring-boot</git.url>
<git.connection>scm:git:git://github.com/wavefrontHQ/wavefront-spring-boot.git</git.connection>
<git.developerConnection>scm:git:ssh://git@github.com/wavefrontHQ/wavefront-spring-boot.git</git.developerConnection>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<modules>
<module>wavefront-spring-boot</module>
<module>wavefront-spring-boot-bom</module>
<module>wavefront-spring-boot-parent</module>
<module>wavefront-spring-boot-starter</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<inherited>false</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sample</id>
<activation>
<property>
<name>!release</name>
</property>
</activation>
<modules>
<module>wavefront-spring-boot-sample</module>
</modules>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<configuration>
<useAgent>true</useAgent>
</configuration>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>finalRelease</id>
<activation>
<property>
<name>releaseType</name>
<value>final</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>milestoneRelease</id>
<activation>
<property>
<name>releaseType</name>
<value>milestone</value>
</property>
</activation>
<distributionManagement>
<repository>
<id>spring-milestones</id>
<name>Spring Lib Milestones</name>
<url>https://repo.spring.io/libs-milestone-local</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<repositories>
<repository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/release</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/release</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<snapshotRepository>
<id>spring-snapshots</id>
<name>Spring Lib Snapshots</name>
<url>https://repo.spring.io/libs-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
</project>