spring-message-outbox-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jblabs</groupId> <artifactId>spring-message-outbox-parent</artifactId> <version>0.0.3</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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>org.jblabs</groupId> <artifactId>spring-message-outbox-parent</artifactId> <packaging>pom</packaging> <version>0.0.3</version> <name>${project.groupId}:${project.artifactId}</name> <description>Parent Pom for the Spring Message Outbox</description> <url>https://github.com/jblabs-org/spring-message-outbox</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Joshua Bridevaux</name> <email>info@jblabs.org</email> <organization>JBLabs</organization> <organizationUrl>http://www.jblabs.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/jblabs-org/spring-message-outbox.git</connection> <developerConnection>scm:git:ssh://github.com:jblabs-org/spring-message-outbox.git</developerConnection> <url>http://github.com/jblabs-org/spring-message-outbox/tree/main</url> </scm> <properties> <java.version>11</java.version> <sonar.projectKey>jblabs-org_spring-message-outbox</sonar.projectKey> <sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey> <sonar.organization>jblabs-org</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <versions-maven-plugin.version>2.8.1</versions-maven-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <!-- Testcoverage analysis --> <build-plugin.jacoco.version>0.8.6</build-plugin.jacoco.version> </properties> <modules> <module>outbox-core</module> <module>outbox-storage-postgres</module> <module>outbox-publisher-logging</module> <module>outbox-publisher-rabbitmq</module> </modules> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <!-- plugins needed to deploy to Maven Central --> <profile> <id>central-deploy</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- This is necessary for gpg to not try to use the pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> <executions> <execution> <id>deploy-to-sonatype</id> <phase>deploy</phase> <goals> <goal>deploy</goal> <!-- <goal>release</goal>--> <!-- TODO remove to auto release--> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${build-plugin.jacoco.version}</version> <executions> <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when Maven the Surefire plugin is executed. --> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <!-- Ensures that the code coverage report is created after all tests have been run. --> <execution> <id>generate-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>