hazelcast-spring-boot-starters
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.all-things.boot</groupId>
<artifactId>hazelcast-spring-boot-starters</artifactId>
<version>2.0.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Spring Boot parent configuration for centralized dependency management -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.0</version>
<relativePath />
</parent>
<groupId>dev.all-things.boot</groupId>
<artifactId>hazelcast-spring-boot-starters</artifactId>
<version>2.0.0</version>
<!-- This module will be packaged as POM -->
<packaging>pom</packaging>
<name>Hazelcast Spring Boot Starters</name>
<description>Spring Boot starters for configuring Hazelcast server and client instances</description>
<!-- Project details -->
<url>https://github.com/all-things-dev/hazelcast-spring-boot-starters</url>
<scm>
<url>https://github.com/all-things-dev/hazelcast-spring-boot-starters</url>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>All Things Dev</name>
<url>https://github.com/all-things-dev</url>
</organization>
<!-- Project modules -->
<modules>
<module>hazelcast-spring-boot-starter</module>
</modules>
<!-- Project properties -->
<properties>
<!-- Hazelcast -->
<hazelcast.version>5.7.0</hazelcast.version>
<!-- Plugins -->
<maven.nexus-staging-plugin.version>1.7.0</maven.nexus-staging-plugin.version>
<maven.gpg-plugin.version>3.2.8</maven.gpg-plugin.version>
<sonatype.central-publishing-plugin.version>0.9.0</sonatype.central-publishing-plugin.version>
<!-- Compiler configuration -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<!-- Build and plugin configuration -->
<build>
<!-- Common convention for generated artifacts -->
<finalName>${project.artifactId}-${project.version}</finalName>
</build>
<!-- Module profiles -->
<profiles>
<!-- Profile for publishing to Maven Central -->
<profile>
<id>release</id>
<!-- Release build configuration -->
<build>
<plugins>
<!-- Source plugin configuration for publishing sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- JavaDoc plugin configuration for publishing JavaDocs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG plugin configuration for signing published artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- Sonatype plugin configuration for staging / releasing artifacts -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${sonatype.central-publishing-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Managed dependency configuration -->
<dependencyManagement>
<dependencies>
<!-- Hazelcast -->
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-spring-boot4</artifactId>
<version>${hazelcast.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>