core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.cloud.servicesdk.prov</groupId> <artifactId>core</artifactId> <version>1.1.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.sap.cloud.servicesdk</groupId> <artifactId>parent</artifactId> <version>1.1.3</version> <relativePath>../parent/pom.xml</relativePath> </parent> <groupId>com.sap.cloud.servicesdk.prov</groupId> <artifactId>core</artifactId> <packaging>pom</packaging> <name>com.sap.cloud.servicesdk.service.prov.core</name> <description>SAP Cloud Platform SDK for service development</description> <url>http://www.sap.com</url> <scm> <connection /> <url /> </scm> <developers> <developer> <name>SAP SE</name> <organization>SAP SE</organization> <organizationUrl>http://www.sap.com</organizationUrl> </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> <modules> <module>core-prov</module> <module>odatav2-prov</module> <module>odatav4-lib</module> <module>odatav4-prov</module> </modules> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.7</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <wtpversion>2.0</wtpversion> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <projectNameTemplate>[artifactId]-[version]</projectNameTemplate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>unpack</id> <phase>compile</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>com.sap.cloud.servicesdk</groupId> <artifactId>developer_license</artifactId> <version>${cxs.rt.version}</version> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/classes/</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <show>public</show> </configuration> </plugin> </plugins> </reporting> </project>