shaded_alink_metadata_def
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alibaba.alink</groupId> <artifactId>shaded_alink_metadata_def</artifactId> <version>3.21.1-0.6</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>alink_shaded</artifactId> <groupId>com.alibaba.alink</groupId> <version>0.6</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.alibaba.alink</groupId> <artifactId>shaded_alink_metadata_def</artifactId> <version>3.21.1-0.6</version> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>*:*</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.google</pattern> <shadedPattern>com.alibaba.alink.metadata.def.shaded.com.google</shadedPattern> </relocation> <relocation> <pattern>org.tensorflow.metadata</pattern> <shadedPattern>com.alibaba.alink.metadata.def</shadedPattern> </relocation> </relocations> </configuration> </plugin> </plugins> </build> <properties> <protobuf.version>3.21.1</protobuf.version> </properties> </project>