generic-handler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.ipe.ble</groupId> <artifactId>generic-handler</artifactId> <version>1.1.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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.ipe.ble</groupId> <artifactId>generic-handler-parent</artifactId> <version>1.1.6</version> </parent> <artifactId>generic-handler</artifactId> <version>1.1.6</version> <name>generic-handler</name> <description>Generic Handler</description> <licenses> <license> <name>SAP DEVELOPER LICENSE AGREEMENT</name> <url>https://tools.hana.ondemand.com/developer-license.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <sap-cloud-sdk-scp-cf.version>5.18.0</sap-cloud-sdk-scp-cf.version> <cds4j-core.version>3.10.0</cds4j-core.version> <cds.feature.api.version>1.17.0</cds.feature.api.version> <commons-io.version>2.19.0</commons-io.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sap.cds</groupId> <artifactId>cds-feature-api</artifactId> <version>${cds.feature.api.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.json</groupId> <artifactId>json</artifactId> </exclusion> <exclusion> <groupId>com.vaadin.external.google</groupId> <artifactId>android-json</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>scp-cf</artifactId> <version>${sap-cloud-sdk-scp-cf.version}</version> </dependency> <dependency> <groupId>com.sap.cloud.sdk.datamodel</groupId> <artifactId>odata-client</artifactId> <version>${sap-cloud-sdk-scp-cf.version}</version> </dependency> <dependency> <groupId>com.sap.cds</groupId> <artifactId>cds-services-impl</artifactId> </dependency> <dependency> <groupId>com.sap.cds</groupId> <artifactId>cds4j-core</artifactId> <version>${cds4j-core.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>com.sap.cds</groupId> <artifactId>cds-feature-auditlog-v2</artifactId> <scope>runtime</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>report-aggregate</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>