handler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sap.ipe.ble</groupId>
<artifactId>handler</artifactId>
<version>2.0.6</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- parent pom -->
<groupId>com.sap.ipe.ble</groupId>
<artifactId>handler</artifactId>
<packaging>pom</packaging>
<version>2.0.6</version>
<name>handler</name>
<description>Handler</description>
<url>http://www.sap.com</url>
<organization>
<name>SAP</name>
</organization>
<licenses>
<license>
<name>SAP DEVELOPER LICENSE AGREEMENT</name>
<url>https://tools.hana.ondemand.com/developer-license.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>SAP SE</name>
<organization>SAP SE</organization>
<organizationUrl>http://www.sap.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.tools.sap/SAP-Returnable-Packaging-Management/Extension.git</connection>
<url>https://github.tools.sap/SAP-Returnable-Packaging-Management/Extension</url>
</scm>
<properties>
<jacoco.version>0.8.14</jacoco.version>
<flatten.maven.version>1.7.3</flatten.maven.version>
</properties>
<!-- sub modules -->
<modules>
<module>Generic-Handler</module>
<module>Remote-Handler</module>
</modules>
<!-- Jacoco Coverage -->
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/exceptions/**/*</exclude>
<exclude>**/constants/**/*</exclude>
<exclude>**/configuration/**/*</exclude>
<exclude>**/Application.*</exclude>
<exclude>**/DestinationService.*</exclude>
<exclude>**/Translator.*</exclude>
<!-- <exclude>srv/target/**/prettify.js</exclude> -->
<exclude>**/srv/target/**/*.js</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten.maven.version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>