google-pubsubhubbub-spring-boot-starter-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.joshlong</groupId> <artifactId>google-pubsubhubbub-spring-boot-starter-parent</artifactId> <version>0.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>3.0.2</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.joshlong</groupId> <artifactId>google-pubsubhubbub-spring-boot-starter-parent</artifactId> <version>0.0.3</version> <packaging>pom</packaging> <properties> <java.version>17</java.version> </properties> <modules> <module>google-pubsubhubbub-spring-boot-starter</module> </modules> <developers> <developer> <name>Josh Long</name> <email>josh@joshlong.com</email> <organization>joshlong.com</organization> <organizationUrl>https://joshlong.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/joshlong/google-pubsubhubbub-spring-boot-starter.git</connection> <developerConnection>scm:git:ssh://github.com/joshlong/google-pubsubhubbub-spring-boot-starter.git </developerConnection> <url>https://github.com/joshlong/google-pubsubhubbub-spring-boot-starter/tree/main</url> </scm> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.spring.javaformat</groupId> <artifactId>spring-javaformat-maven-plugin</artifactId> <version>0.0.35</version> <executions> <execution> <phase>validate</phase> <inherited>true</inherited> <goals> <goal>validate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>libs-release</name> <url> https://cloudnativejava.jfrog.io/cloudnativejava/libs-release </url> </repository> <repository> <snapshots/> <id>snapshots</id> <name>libs-snapshot</name> <url> https://cloudnativejava.jfrog.io/cloudnativejava/libs-snapshot </url> </repository> </repositories> <pluginRepositories> <pluginRepository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>plugins-release</name> <url> https://cloudnativejava.jfrog.io/cloudnativejava/plugins-release </url> </pluginRepository> <pluginRepository> <snapshots/> <id>snapshots</id> <name>plugins-snapshot</name> <url> https://cloudnativejava.jfrog.io/cloudnativejava/plugins-snapshot </url> </pluginRepository> </pluginRepositories> <!-- --> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.12</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>