comms-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.twister2</groupId>
<artifactId>comms-java</artifactId>
<version>0.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- // Licensed under the Apache License, Version 2.0 (the "License"); -->
<!-- // you may not use this file except in compliance with the License. -->
<!-- // You may obtain a copy of the License at -->
<!-- // -->
<!-- // http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- // -->
<!-- // Unless required by applicable law or agreed to in writing, software -->
<!-- // distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
<!-- // See the License for the specific language governing permissions and -->
<!-- // limitations under the License. -->
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.twister2</groupId>
<artifactId>comms-java</artifactId>
<name>Twsiter2 Communication</name>
<version>0.8.0</version>
<description>Twister2 Big Data Hosting Environment: A composable framework for high-performance
data analytics
</description>
<url>https://github.com/DSC-SPIDAL/twister2</url>
<packaging>jar</packaging>
<scm>
<url>https://github.com/DSC-SPIDAL/twister2</url>
<connection>scm:git:git://github.com/DSC-SPIDAL/twister2.git</connection>
<developerConnection>scm:git:ssh://git@github.com/DSC-SPIDAL/twister2.git
</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/DSC-SPIDAL/twister2/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>Indiana University</name>
<url>http://iu.edu</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</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>
</plugins>
</build>
<profiles>
<!-- GPG Signature on release -->
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<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>
</plugins>
</build>
</profile>
</profiles>
<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>
<dependencies>
<dependency>
<groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-java</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-format</artifactId>
<version>0.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory</artifactId>
<version>0.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>api-utils-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>common-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>comms-api-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>config-api-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>data-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>dataset-api-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>exceptions-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>proto-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>proto-utils-java</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.twister2</groupId>
<artifactId>resource-api-java</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
</project>