teamapps-cluster
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.teamapps</groupId>
<artifactId>teamapps-cluster</artifactId>
<version>0.14</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>org.teamapps</groupId>
<artifactId>teamapps-cluster</artifactId>
<version>0.14</version>
<name>TeamApps Cluster</name>
<description>A TeamApps.org framework for building fault-tolerant distributed systems</description>
<url>https://github.com/teamapps-org/teamapps-cluster</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<name>Matthias Bernstein</name>
<email>matthias.bernstein@teamapps.org</email>
<id>matthias-bernstein</id>
</developer>
</developers>
<properties>
<maven.compiler.release>23</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<url>https://github.com/teamapps-org/teamapps-cluster</url>
<connection>scm:git:git@github.com:teamapps-org/teamapps-cluster.git</connection>
<developerConnection>scm:git:git@github.com:teamapps-org/teamapps-cluster.git</developerConnection>
<tag>v0.14</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.teamapps</groupId>
<artifactId>teamapps-configuration-management</artifactId>
<version>0.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
</dependency>
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
<version>6.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.17.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.teamapps</groupId>
<artifactId>teamapps-message-protocol-maven-plugin</artifactId>
<version>0.6</version>
<executions>
<execution>
<id>run-1</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-message-protocol-api</goal>
</goals>
<configuration>
<protocolClasses>
<protocolClass>MessageProtocol</protocolClass>
</protocolClasses>
</configuration>
</execution>
<execution>
<id>run-2</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-test-message-protocol-api</goal>
</goals>
<configuration>
<protocolClasses>
<protocolClass>MessageTestProtocol</protocolClass>
</protocolClasses>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{version}</tagNameFormat>
<releaseProfiles>release</releaseProfiles>
<pushChanges>true</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<deploymentName>${project.name} ${project.version}</deploymentName>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.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.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>license-handling</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.7.0</version>
<executions>
<execution>
<id>download-licenses</id>
<goals>
<goal>download-licenses</goal>
</goals>
</execution>
<execution>
<id>update-project-license</id>
<goals>
<goal>update-project-license</goal>
</goals>
</execution>
<execution>
<id>update-file-header</id>
<phase>process-sources</phase>
<goals>
<goal>update-file-header</goal>
</goals>
</execution>
</executions>
<configuration>
<projectName>${project.name}</projectName>
<organizationName>TeamApps.org</organizationName>
<inceptionYear>2021</inceptionYear>
<licenseName>apache_v2</licenseName>
<processStartTag>========================LICENSE_START=================================</processStartTag>
<processEndTag>=========================LICENSE_END==================================</processEndTag>
<sectionDelimiter>---</sectionDelimiter>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<canUpdateCopyright>true</canUpdateCopyright>
<canUpdateDescription>true</canUpdateDescription>
<canUpdateLicense>true</canUpdateLicense>
<roots>
<root>src/main</root>
<root>src/test</root>
<root>target/generated-sources</root>
<root>target/generated-resources</root>
</roots>
<excludes>
<exclude>**/*.json</exclude>
<exclude>**/*.svg</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.xml</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>