You can download score-content-sdk-1.10.7.jar in this page.
The Apache License, Version 2.0
score-content-sdk-1.10.7.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.hp.score.sdk/score-content-sdk/pom.properties META-INF/maven/com.hp.score.sdk/score-content-sdk/pom.xml com.hp.oo.sdk.content.annotations.Action.class com.hp.oo.sdk.content.annotations.Output.class com.hp.oo.sdk.content.annotations.Param.class com.hp.oo.sdk.content.annotations.Response.class com.hp.oo.sdk.content.plugin.ActionMetadata.MatchType.class com.hp.oo.sdk.content.plugin.ActionMetadata.ResponseType.class com.hp.oo.sdk.content.plugin.GlobalSessionObject.class com.hp.oo.sdk.content.plugin.SerializableSessionObject.class com.hp.oo.sdk.content.plugin.SessionObject.class com.hp.oo.sdk.content.plugin.SessionParam.class com.hp.oo.sdk.content.plugin.SessionResource.class com.hp.oo.sdk.content.plugin.StepSerializableSessionObject.class
score-content-sdk-1.10.7.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright ? 2014-2017 EntIT Software LLC, a Micro Focus company (L.P.) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>com.hp.score.sdk</groupId> <artifactId>score-content-sdk</artifactId> <version>1.10.7</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>An SDK to develop score content</description> <url>https://github.com/CloudSlang/score-content-sdk</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/CloudSlang/score-content-sdk.git</connection> <developerConnection>scm:git:git@github.com:CloudSlang/score-content-sdk.git</developerConnection> <url>https://github.com/CloudSlang/score-content-sdk.git</url> <tag>score-content-sdk-1.10.7</tag> </scm> <properties> <!--Maven versions--> <maven-resources-plugin.version>3.0.2</maven-resources-plugin.version> <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-license-plugin.version>3.0</maven-license-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <!--Project properties--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <custom.nexus>overwriten_by_ci</custom.nexus> </properties> <distributionManagement> <repository> <id>ossrh</id> <name>Maven Central staging repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Maven Central snapshots repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <developers> <developer> <name>Orit Stone</name> <email>orit.stone@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> <developer> <name>Avi Moradi</name> <email>avi.moradi@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${maven-license-plugin.version}</version> <configuration> <header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header> <includes> <include>**/*.java</include> <include>pom.xml</include> </includes> <!--Pass arguments using ${var} syntax in license.template file--> <properties> <owner>EntIT Software LLC, a Micro Focus company</owner> <project.inceptionYear>2014-2017</project.inceptionYear> <email>L.P.</email> </properties> <mapping> <java>SLASHSTAR_STYLE</java> <xml>XML_STYLE</xml> </mapping> </configuration> <executions> <execution> <phase>process-resources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>gpg</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-internal</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <executions> <execution> <id>custom-deployment-to-nexus</id> <goals> <goal>deploy</goal> </goals> <phase>deploy</phase> <configuration> <altDeploymentRepository>${custom.nexus}</altDeploymentRepository> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.hp.score.sdk</groupId> <artifactId>score-content-sdk</artifactId> <version>1.10.7</version> </dependency>
If you think the following score-content-sdk-1.10.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download score-content-sdk-1.10.7.jar file