mlflow-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-client</artifactId>
<version>3.8.1</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">
<parent>
<artifactId>mlflow-parent</artifactId>
<groupId>org.mlflow</groupId>
<version>3.8.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>mlflow-client</artifactId>
<name>MLflow Tracking API</name>
<url>http://mlflow.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<sourcepath>${project.basedir}/src/main/java</sourcepath>
<excludePackageNames>com.databricks.api.proto.databricks:org.mlflow.scalapb_interface:org.mlflow.tracking.samples:org.mlflow.artifacts</excludePackageNames>
<groups>
<group>
<title>Tracking API</title>
<packages>org.mlflow.tracking:org.mlflow.tracking.*</packages>
</group>
</groups>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>false</minimizeJar>
<shadedArtifactAttached>false</shadedArtifactAttached>
<artifactSet>
<includes>
<include>com.google.protobuf:protobuf-java</include>
<include>com.google.protobuf:protobuf-java-util</include>
<include>org.apache.httpcomponents:httpclient</include>
<include>com.google.guava:guava</include>
<include>com.google.code.gson:gson</include>
<include>commons-codec:commons-codec</include>
<include>commons-io:commons-io</include>
<include>commons-logging:commons-logging</include>
<include>org.apache.httpcomponents:httpcore</include>
<include>org.ini4j:ini4j</include>
<include>io.opentelemetry.proto:opentelemetry-proto</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>${mlflow.shade.packageName}.google</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons</pattern>
<shadedPattern>${mlflow.shade.packageName}.apachecommons</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.http</pattern>
<shadedPattern>${mlflow.shade.packageName}.apachehttp</shadedPattern>
</relocation>
<relocation>
<pattern>com.databricks.api.proto.databricks</pattern>
<shadedPattern>${mlflow.shade.packageName}.databricks</shadedPattern>
</relocation>
<relocation>
<pattern>org.ini4j</pattern>
<shadedPattern>${mlflow.shade.packageName}.ini4j</shadedPattern>
</relocation>
<relocation>
<pattern>io.opentelemetry</pattern>
<shadedPattern>${mlflow.shade.packageName}.opentelemetry</shadedPattern>
</relocation>
</relocations>
<transformers>
<transformer>
<resources>
<resource>public-suffix-list.txt</resource>
<resource>log4j.properties</resource>
<resource>.proto</resource>
</resources>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>do-sign</id>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jcommander</artifactId>
<groupId>com.beust</groupId>
</exclusion>
<exclusion>
<artifactId>bsh</artifactId>
<groupId>org.apache-extras.beanshell</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.25</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<mlflow.shade.packageName>org.mlflow_project</mlflow.shade.packageName>
</properties>
</project>