gossip-simulator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.manoelcampos</groupId> <artifactId>gossip-simulator</artifactId> <version>0.2.0</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.manoelcampos</groupId> <artifactId>gossip-simulator</artifactId> <version>0.2.0</version> <name>Java Gossip Simulator API</name> <description>An API for creation of applications to simulate the Gossip Protocol</description> <url>http://manoelcampos.com/java-gossip-simulator</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <developers> <developer> <name>Manoel Campos da Silva Filho</name> <email>manoelcampos@gmail.com</email> <organization>Instituto Federal de Educação Ciência e Tecnologia do Tocantins (IFTO)</organization> <organizationUrl>http://www.ifto.edu.br</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:manoelcampos/java-gossip-simulator.git</connection> <developerConnection>scm:git:git@github.com:manoelcampos/java-gossip-simulator.git</developerConnection> <url>git@github.com:manoelcampos/java-gossip-simulator.git</url> </scm> <issueManagement> <url>http://github.com/manoelcampos/java-gossip-simulator/issues</url> <system>GitHub Issues</system> </issueManagement> <profiles> <profile> <!-- A profile used to execute all goals required to deploy the project to the Maven Central. To execute use: mvn clean deploy -P sonatype To check the deployed artifact and probably release it to maven central you should visit https://oss.sonatype.org. MAKE SURE YOU ARE LOGGED IN TO SEE YOUR DEPLOYMENTS. --> <id>sonatype</id> <!-- URLs to deploy the project at the Maven Central (http://mvnrepository.com) using a Sonatype account (http://central.sonatype.org) See the "all" profile in this pom for deployment information. --> <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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Signs the generated jar using GPG, as required for deploying at the Maven Central. Configurations are defined into the local repo settings.xml --> <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> <configuration> <!-- Prevent `gpg` from using pinentry programs and avoid "gpg: signing failed: Inappropriate ioctl for device" error. --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <!-- Plugin to deploy to the maven central using a Sonatype account. Credentials are defined into the local repo settings.xml --> <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> <!--If the artifact will be automatically released to maven central after the upload to sonatype.--> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <!-- Plugins to be reused for different <profile>'s --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <failOnError>false</failOnError> <additionalOptions>-Xdoclint:none</additionalOptions> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>17</release> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <reportSets> <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/examples/javadoc-nofork.html --> <reportSet> <reports> <report>javadoc-no-fork</report> <report>test-javadoc-no-fork</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.6.1</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.3.0-alpha10</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.3.0-alpha10</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.0-alpha4</version> </dependency> </dependencies> </project>