globs-rpc-direct
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.globsframework</groupId> <artifactId>globs-rpc-direct</artifactId> <version>4.3.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <description>Globs library for glob RPC call.</description> <url>https://globsframework.org</url> <groupId>org.globsframework</groupId> <packaging>jar</packaging> <artifactId>globs-rpc-direct</artifactId> <name>Glob simple RPC call using blocking socket</name> <version>4.3.0</version> <developers> <developer> <name>Marc Guiot</name> <email>marc.guiot@free.fr</email> </developer> </developers> <licenses> <license> <name>Apache License</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <repositories> <repository> <id>github-globsframework</id> <url>https://maven.pkg.github.com/globsframework/*</url> </repository> </repositories> <scm> <connection>scm:git:git@github.com:globsframework/globs-rpc-direct</connection> <developerConnection>scm:git:git@github.com:globsframework/globs-rpc-direct</developerConnection> <url>https://github.com/globsframework/globs-rpc-direct</url> <tag>4.3.0</tag> </scm> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.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>2.9.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>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>github-globsframework</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/${env.GITHUB_REPOSITORY}</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>21</source> <target>21</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.globsframework</groupId> <artifactId>globs</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>org.globsframework</groupId> <artifactId>globs-bin-serialisation</artifactId> <version>4.3.0</version> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>4.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.20.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.20.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.20.0</version> <scope>test</scope> </dependency> </dependencies> </project>