Download nubomedia-media-client-1.0.1.jar file

Introduction

You can download nubomedia-media-client-1.0.1.jar in this page.

License

The Apache License, Version 2.0

Type List

nubomedia-media-client-1.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/de.fhg.fokus.nubomedia/nubomedia-media-client/pom.properties
META-INF/maven/de.fhg.fokus.nubomedia/nubomedia-media-client/pom.xml
de.fhg.fokus.nubomedia.App.class
de.fhg.fokus.nubomedia.kmc.HeartBeatTimerTask.class
de.fhg.fokus.nubomedia.kmc.KmsUrlProvider.class
de.fhg.fokus.nubomedia.paas.ApplicationRecord.class
de.fhg.fokus.nubomedia.paas.ApplicationRecordBody.class
de.fhg.fokus.nubomedia.paas.VNFRService.class
de.fhg.fokus.nubomedia.paas.VNFRServiceImpl.class
de.fhg.fokus.nubomedia.paas.VNFRServiceProfile.class
de.fhg.fokus.nubomedia.paas.VirtualNetworkFunctionRecord.class

Pom

nubomedia-media-client-1.0.1.pom file content.

<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>de.fhg.fokus.nubomedia</groupId>
	<artifactId>nubomedia-media-client</artifactId>
	<version>1.0.1</version>
	<packaging>jar</packaging>
	<name>nubomedia-media-client</name>
	<description>The media client to use on together with Kurento client for depoying applications on the NUBOMEDIA cloud platform</description>
	<organization>
		<name>Fraunhofer FOKUS</name>
		<url>www.fokus.fraunhofer.de</url>
	</organization>
	<licenses>
		<license>
			<name>The Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<name>Cheambe Alice</name>
			<email>alice.cheambe@fokus.fraunhofer.de</email>
			<organization>Fraunhofer FOKUS</organization>
			<organizationUrl>http://www.fokus.fraunhofer.de</organizationUrl>
		</developer>
	</developers>
	<properties>
		<java.version>1.7</java.version>
		<maven.javadoc.skip>false</maven.javadoc.skip>
		<!-- Main class -->
		<start-class>de.fhg.fokus.nubomedia.App</start-class>
	</properties>
	<scm>
		<connection>scm:git:git@github.com:fhg-fokus-nubomedia/nubomedia-media-client.git</connection>
		<developerConnection>scm:git:git@github.com:fhg-fokus-nubomedia/nubomedia-media-client.git</developerConnection>
		<url>git@github.com:fhg-fokus-nubomedia/nubomedia-media-client.git</url>
	  <tag>1.0.1</tag>
  </scm>
	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
	</distributionManagement>
	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>versions-maven-plugin</artifactId>
				<version>2.1</version>
				<configuration>
					<generateBackupPoms>false</generateBackupPoms>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5.1</version>
				<executions>
					<execution>
						<id>default</id>
						<goals>
							<goal>perform</goal>
						</goals>						
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-deploy-plugin</artifactId>
				<configuration>
					<skip>true</skip>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>package-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>package-javadoc</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</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>
				<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>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>1.2.7.RELEASE</version>
	</parent>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
			<version>1.2.7.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-websocket</artifactId>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>

		<!-- google json library -->
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.4</version>
		</dependency>

		<!-- kurento-client -->
		<dependency>
			<groupId>org.kurento</groupId>
			<artifactId>kurento-client</artifactId>
			<version>6.2.1</version>
		</dependency>

	</dependencies>
</project>

POM Entry

<dependency>
   <groupId>de.fhg.fokus.nubomedia</groupId>
   <artifactId>nubomedia-media-client</artifactId>
   <version>1.0.1</version>
</dependency>

Download

If you think the following nubomedia-media-client-1.0.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download nubomedia-media-client-1.0.1.jar file




PreviousNext

Related