emjapi-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sap.cloud.servicesdk.xbem</groupId>
<artifactId>emjapi-api</artifactId>
<version>1.9.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>
<parent>
<groupId>com.sap.cloud.servicesdk.xbem</groupId>
<artifactId>emjapi-release</artifactId>
<version>1.9.1</version>
<relativePath>../../emjapi-release</relativePath>
</parent>
<artifactId>emjapi-api</artifactId>
<packaging>jar</packaging>
<!-- Project related information -->
<name>emjapi: Core API </name>
<description>Core API for emjapi (Java API for Enterprise Messaging)</description>
<url>http://www.sap.com</url>
<scm>
<connection />
<url />
<developerConnection />
</scm>
<developers>
<developer>
<name>SAP SE</name>
<organization>SAP SE</organization>
<organizationUrl>http://www.sap.com</organizationUrl>
<email />
</developer>
</developers>
<licenses>
<license>
<name>SAP DEVELOPER LICENSE AGREEMENT</name>
<url>https://tools.hana.ondemand.com/developer-license-3_1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Project related build/dependency properties and settings -->
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.junit>4.12</version.junit>
<version.mockito>1.10.19</version.mockito>
</properties>
<build>
<finalName>emjapi-api</finalName>
<defaultGoal>package</defaultGoal>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${version.mockito}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>