Download score-content-sdk-1.10.6.jar file

Introduction

You can download score-content-sdk-1.10.6.jar in this page.

License

The Apache License, Version 2.0

Type List

score-content-sdk-1.10.6.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.SessionParam.class
com.hp.oo.sdk.content.plugin.SessionResource.class

Pom

score-content-sdk-1.10.6.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
(c) Copyright 2014 Hewlett-Packard Development Company, L.P.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Apache License v2.0 which accompany this distribution.

The Apache License is available at
http://www.apache.org/licenses/LICENSE-2.0
-->
<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.6</version>
	<packaging>jar</packaging>
	<name>${project.groupId}:${project.artifactId}</name>
	<description>An SDK to develop score content</description>
	<url>https://github.com/openscore/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://openscore/score-content-sdk.git</connection>
		<developerConnection>scm:git:git@github.com:openscore/score-content-sdk.git</developerConnection>
		<url>https://github.com/openscore/score-content-sdk.git</url>
		<tag>score-content-sdk-1.10.6</tag>
	</scm>
	<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>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.8</version>
				</plugin>
				<plugin>
					<artifactId>maven-source-plugin</artifactId>
					<version>2.2.1</version>
					<executions>
						<execution>
							<id>attach-sources</id>
							<phase>verify</phase>
							<goals>
								<goal>jar-no-fork</goal>
							</goals>
						</execution>
					</executions>
					<configuration>
						<attach>true</attach>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
	<profiles>
		<profile>
			<id>default-profile</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-deploy-plugin</artifactId>
						<version>2.8.1</version>
					</plugin>
				</plugins>
			</build>
		</profile>
		<profile>
			<id>release-internal-profile</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-deploy-plugin</artifactId>
						<version>2.8.1</version>
					</plugin>
				</plugins>
			</build>
		</profile>
		<profile>
			<id>release-external-profile</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-release-plugin</artifactId>
						<version>2.5</version>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-deploy-plugin</artifactId>
						<version>2.8.1</version>
					</plugin>
					<plugin>
						<groupId>org.sonatype.plugins</groupId>
						<artifactId>nexus-staging-maven-plugin</artifactId>
						<version>1.6.3</version>
						<extensions>true</extensions>
						<configuration>
							<serverId>ossrh</serverId>
							<nexusUrl>https://oss.sonatype.org</nexusUrl>
							<autoReleaseAfterClose>true</autoReleaseAfterClose>
						</configuration>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.5</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

POM Entry

<dependency>
   <groupId>com.hp.score.sdk</groupId>
   <artifactId>score-content-sdk</artifactId>
   <version>1.10.6</version>
</dependency>

Download

If you think the following score-content-sdk-1.10.6.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.6.jar file




PreviousNext

Related