KalturaApiClient
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kaltura</groupId> <artifactId>KalturaApiClient</artifactId> <version>21.16.0</version> </dependency>
<?xml version="1.0"?> <!-- --> <!-- Maven POM file for packaging and testing the --> <!-- KalturaApiClient Java library. --> <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"> <!-- Define the GAV coordinate for the project --> <modelVersion>4.0.0</modelVersion> <groupId>com.kaltura</groupId> <artifactId>KalturaApiClient</artifactId> <version>21.16.0</version> <packaging>jar</packaging> <properties> <java.version>1.7</java.version> </properties> <!-- Project description --> <name>Kaltura API Java Client Library</name> <description> KalturaApiClient is a library of Java classes that can be used to interact with the Kaltura REST API. More information about the REST API can be found at http://corp.kaltura.com/Products/Kaltura-API Many of the Java classes in this library are auto-generated from a schema that defines the objects that are used to interact with the API. The current schema can be found at http://www.kaltura.com/api_v3/api_schema.php This library replaces the deprecated KalturaClient library. </description> <url>http://github.com/kaltura/KalturaGeneratedAPIClientsJava</url> <!-- Define the license under which this software can be used. --> <licenses> <license> <name>GNU Affero General Public License, Version 3.0</name> <url>https://www.gnu.org/licenses/agpl-3.0.html</url> <distribution>repo</distribution> <comments /> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <!-- Developers who contribute to this software. --> <developers> <developer> <name>Jess Portnoy</name> <email>jess.portnoy@kaltura.com</email> <organization>Kaltura</organization> <organizationUrl>http://www.kaltura.com</organizationUrl> </developer> <developer> <name>Tehila Rozin</name> <email>Tehila.Rozin@kaltura.com</email> <organization>Kaltura</organization> <organizationUrl>http://www.kaltura.com</organizationUrl> </developer> <developer> <name>Johnathan Amit-Kanarek</name> <email>Jonathan.Kanarek@kaltura.com</email> <organization>Kaltura</organization> <organizationUrl>http://www.kaltura.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:kaltura/KalturaGeneratedAPIClientsJava.git</connection> <developerConnection>scm:git:git@github.com:kaltura/KalturaGeneratedAPIClientsJava.git</developerConnection> <url>scm:git:git@github.com:kaltura/KalturaGeneratedAPIClientsJava.git</url> </scm> <!-- Libraries on which the KalturaClient depends --> <dependencies> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20240303</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.9.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.7.20</version> </dependency> <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp --> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.12.0</version> </dependency> <dependency> <groupId>com.squareup.okio</groupId> <artifactId>okio</artifactId> <version>3.9.1</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.18.0</version> </dependency> <!-- JUnit for testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.7</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </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> <configuration> <keyname>${gpg.keyname}</keyname> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</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-source-plugin</artifactId> <version>3.2.1</version> <!-- Adjust version if needed --> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <!-- Adjust version if needed --> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>