odatav4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.cloud.servicesdk.archetypes</groupId> <artifactId>odatav4</artifactId> <version>1.40.11</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.sap.cloud.servicesdk.prov</groupId> <artifactId>archetypes</artifactId> <version>1.40.11</version> </parent> <groupId>com.sap.cloud.servicesdk.archetypes</groupId> <artifactId>odatav4</artifactId> <packaging>maven-archetype</packaging> <name>odatav4</name> <description>Develop OData V4 services with 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> <properties> <javax.jar.version>${javax.version}</javax.jar.version> <olingo.jar.version>${olingo.v4.version}</olingo.jar.version> <slf4j.jar.version>${slf4j.version}</slf4j.jar.version> <gw.rt.version>${project.version}</gw.rt.version> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.0.0</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M1</version> <dependencies> <dependency> <groupId>com.sap.servicesdk</groupId> <artifactId>maven-central-enforcer</artifactId> <version>${project.version}</version> </dependency> </dependencies> <executions> <execution> <id>enforce</id> <phase>install</phase> <configuration> <skip>${maven.test.skip}</skip> <rules> <DependencyRule implementation="com.sap.servicesdk.maven.central.libs.check.DependencyRule"> </DependencyRule> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>replaceTokens</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <replace file="target/classes/archetype-resources/pom.xml"> <replacefilter token="project.parent.version" value="${project.version}" /> <replacefilter token="gw.rt.version" value="${gw.rt.version}" /> </replace> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>