pdms-sdk-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.cloud.pdms.sdk</groupId> <artifactId>pdms-sdk-parent</artifactId> <version>1.0.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.sap.cloud.pdms.sdk</groupId> <artifactId>pdms-sdk-parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>pdms-sdk-parent</name> <description>Parent POM for the SAP Predictive Maintenance and Service SDK</description> <url>https://help.sap.com/viewer/f0e838973fef4ec4a77cf9dbe4b8b7e7/1906/en-US</url> <organization> <name>SAP SE</name> <url>https://www.sap.com</url> </organization> <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> <developers> <developer> <name>SAP</name> <organization>SAP SE</organization> <organizationUrl>https://www.sap.com</organizationUrl> </developer> </developers> <scm> <connection/> <url/> </scm> <modules> <module>ant</module> </modules> <properties> <java.source.level>1.8</java.source.level> <java.target.level>${java.source.level}</java.target.level> <tomee.version>1.7.5</tomee.version> <guava.version>26.0-android</guava.version> <maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> <whitesource-maven-plugin.version>18.6.2</whitesource-maven-plugin.version> </properties> <dependencies> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> <version>2.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.source.level}</source> <target>${java.target.level}</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <bottom> <![CDATA[Copyright © 2016 <a href="http://www.sap.com">SAP</a>. All Rights Reserved.]]> </bottom> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.whitesource</groupId> <artifactId>whitesource-maven-plugin</artifactId> <version>${whitesource-maven-plugin.version}</version> <configuration> <orgToken>6971b2eec2d3420bad0caf173ec629f6a3c7d3ba63f3445ab99ffdbf1acfb1d0</orgToken> <product>SHC - PDMS OD SDK 1.0</product> <checkPolicies>false</checkPolicies> <failOnError>true</failOnError> <ignorePomModules>false</ignorePomModules> <autoDetectProxySettings>true</autoDetectProxySettings> <forceCheckAllDependencies>true</forceCheckAllDependencies> <forceUpdate>true</forceUpdate> <userKey>71f1cc00911f4b859fd27c72ca5940782f47ea89ee004fa4bf3c7fcfabf96173</userKey> </configuration> </plugin> </plugins> </build> </project>