scp-workflow-cf
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.cloud.sdk.services</groupId> <artifactId>scp-workflow-cf</artifactId> <version>4.32.0</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.sdk.services</groupId> <artifactId>services-parent</artifactId> <version>4.32.0</version> </parent> <artifactId>scp-workflow-cf</artifactId> <name>Services - BTP Cloud Foundry Workflow API</name> <description>Integration of Workflow Service RESTful APIs on SAP Business Technology Platform. This module is deprecated</description> <url>https://sap.github.io/cloud-sdk/docs/java/getting-started</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> <email>cloudsdk@sap.com</email> <organization>SAP SE</organization> <organizationUrl>https://www.sap.com</organizationUrl> </developer> </developers> <scm> <connection /> <url /> </scm> <properties> <x-sap-release-audience>Public</x-sap-release-audience> <x-sap-release-maturity>Deprecated</x-sap-release-maturity> <!-- do not fail on warnings since the code generated by the OpenAPI generator may contain warnings --> <java.failOnWarning>false</java.failOnWarning> </properties> <dependencies> <!-- scope "compile" --> <dependency> <groupId>com.sap.cloud.sdk.datamodel</groupId> <artifactId>openapi-core</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>cloudplatform-connectivity</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <exclusions> <exclusion> <artifactId>checker-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <!-- scope "provided"--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.sap.cloud.sdk.datamodel</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <executions> <execution> <id>generate-wfs-api-complete-cf.yaml</id> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${project.basedir}/src/main/resources/wfs-api-complete-cf.yaml</inputSpec> <apiPackage>com.sap.cloud.sdk.services.scp.workflow.cf.api</apiPackage> <modelPackage>com.sap.cloud.sdk.services.scp.workflow.cf.model</modelPackage> <outputDirectory>${project.basedir}/src/main/java</outputDirectory> <deleteOutputDirectory>true</deleteOutputDirectory> <apiMaturity>released</apiMaturity> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.openapitools</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <executions> <execution> <id>validate-wfs-api-complete-cf.yaml</id> <configuration> <inputSpec>${project.basedir}/src/main/resources/wfs-api-complete-cf.yaml</inputSpec> <generateApi>false</generateApi> <generateModels>false</generateModels> </configuration> </execution> </executions> <configuration> <output>${project.basedir}/</output> </configuration> </plugin> <!-- Enable formatter to always run on the generated code --> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <executions> <execution> <goals> <goal>sort</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> </configuration> </plugin> </plugins> </build> </project>