dds-rpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.omg.dds</groupId> <artifactId>dds-rpc</artifactId> <version>1.0-1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.omg.dds</groupId> <artifactId>dds-rpc</artifactId> <version>1.0-1</version> <name>DDS RPC</name> <description>DDS RPC</description> <packaging>bundle</packaging> <properties> <omg-document-number>ptc/16-02-28</omg-document-number> </properties> <url>http://www.omg.org/spec/DDS-RPC/1.0/</url> <dependencies> <dependency> <groupId>org.omg.dds</groupId> <artifactId>java5-psm</artifactId> <version>1.0</version> </dependency> </dependencies> <developers> <developer> <id>mcr70</id> <name>Mika Riekkinen</name> <roles> <role>Maven packaging</role> </roles> </developer> </developers> <scm> <url>http://www.omg.org/spec/DDS-RPC/1.0/</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> </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> <phase>verify</phase> <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-javadoc</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>{local-packages};split-package=merge-first</Export-Package> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>Apache License, Version 2.0</name> <url> http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> </project>