ping-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.coosproject.examples</groupId>
<artifactId>ping-api</artifactId>
<version>1.3.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ping-parent</artifactId>
<groupId>org.coosproject.examples</groupId>
<version>1.3.1</version>
</parent>
<groupId>org.coosproject.examples</groupId>
<artifactId>ping-api</artifactId>
<name>Ping-api</name>
<packaging>bundle</packaging>
<properties>
<bundle.symbolicName>org.coosproject.ping-api</bundle.symbolicName>
<bundle.namespace>org.coos.modules.pingapi</bundle.namespace>
</properties>
<dependencies>
<dependency>
<groupId>org.coosproject.messaging</groupId>
<artifactId>messaging-lib</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.coosproject.api</groupId>
<artifactId>coos-api</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>