script.api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sap.cloud.script</groupId>
<artifactId>script.api</artifactId>
<version>2.16.4</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sap.cloud.script</groupId>
<artifactId>script.api</artifactId>
<version>2.16.4</version>
<packaging>bundle</packaging>
<name>${project.groupId}.${project.artifactId}</name>
<description>Script API</description>
<url>http://www.sap.com</url>
<licenses>
<license>
<name>SAP DEVELOPER LICENSE AGREEMENT</name>
<url>https://tools.hana.ondemand.com/developer-license-3.0.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>SAP</name>
<organization>SAP</organization>
<organizationUrl>http://www.sap.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>.</connection>
<url>.</url>
<developerConnection>.</developerConnection>
</scm>
<properties>
<camel.version>3.14.7</camel.version>
<cxf.version>3.4.8</cxf.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camel.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-attachments</artifactId>
<version>${camel.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-soap</artifactId>
<version>${cxf.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>empty-sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
<classesDirectory>${basedir}/sources</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<!--If used, the javadoc warnings/error will be ignored
<additionalparam>-Xdoclint:none</additionalparam>-->
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>generate-sources</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>aggregate-jar</id>
<phase>generate-sources</phase>
<goals>
<goal>aggregate-jar</goal>
</goals>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>javax.activation,org.apache.camel,org.apache.camel.impl</Import-Package>
<Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
<Bundle-SymbolicName>com.sap.cloud.${project.artifactId}</Bundle-SymbolicName>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>