cluster-boost
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.technologicgroup.cluster</groupId>
<artifactId>cluster-boost</artifactId>
<version>1.1</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>
<groupId>com.technologicgroup.cluster</groupId>
<artifactId>cluster-boost</artifactId>
<packaging>pom</packaging>
<version>1.1</version>
<repositories>
<repository>
<id>GridGain External Repository</id>
<url>http://www.gridgainsystems.com/nexus/content/repositories/external</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>cluster-boost-core</module>
<module>cluster-boost-ignite</module>
<module>cluster-boost-ignite-audit</module>
</modules>
<properties>
<java.version>1.8</java.version>
<target.version>1.8</target.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<core.version>1.1</core.version>
<junit.version>5.0.0-ALPHA</junit.version>
<mockito.version>2.23.4</mockito.version>
<assertj.version>3.16.1</assertj.version>
<ignite.version>8.7.10</ignite.version>
</properties>
<!-- *************************** Deploy ************************** -->
<name>cluster-boost</name>
<description>Helps to implement your first Ignite cluster easily</description>
<url>https://technologicgroup.com</url>
<!-- License for the project, pick a License from opensource.org -->
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Contact for developers on project -->
<developers>
<developer>
<name>Leonid Baranov</name>
<email>info@technologicgroup.com</email>
<!-- Your organization, or Github is fine too -->
<organization>TechnologicGroup, LLC</organization>
<!-- URL for Organization, URL to your github profile work well here -->
<organizationUrl>https://technologicgroup.com</organizationUrl>
</developer>
</developers>
<!-- Source Control Information, Github Stuff -->
<scm>
<!-- Should be format scm:git:git or scm:git:https -->
<connection>scm:git:https://github.com/technologicgroup/cluster-boost.git</connection>
<developerConnection>scm:git:ssh://github.com/technologicgroup/cluster-boost.git</developerConnection>
<url>https://github.com/technologicgroup/cluster-boost.git</url>
<tag>HEAD</tag>
</scm>
<!-- We are deploying to Sonatype, so enter Sonatype Distribution Stuff Here -->
<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>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.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-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>