byteplus-sdk-java-rec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.byteplus</groupId> <artifactId>byteplus-sdk-java-rec</artifactId> <version>1.0.21</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.byteplus</groupId> <artifactId>byteplus-sdk-java-rec</artifactId> <version>1.0.21</version> <packaging>jar</packaging> <name>byteplus-sdk-java-rec</name> <description>JAVA SDK for byteplus rec</description> <url>https://github.com/byteplus-sdk</url> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <lombok.version>1.18.24</lombok.version> <byteplus-sdk-java-rec-core.version>1.0.15</byteplus-sdk-java-rec-core.version> </properties> <dependencies> <dependency> <groupId>com.byteplus</groupId> <artifactId>byteplus-sdk-java-rec-core</artifactId> <version>${byteplus-sdk-java-rec-core.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <excludes> <exclude>log4j.properties</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.9</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </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>byteplus</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- SDK Performance package plugin--> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>retail-performance</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>retail-performance</finalName> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.byteplus.rec.sdk.retail.performance.PredictPerformanceDemo</mainClass> </manifest> </archive> </configuration> </execution> <execution> <id>content-performance</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>content-performance</finalName> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.byteplus.rec.sdk.content.performance.PredictPerformanceDemo</mainClass> </manifest> </archive> </configuration> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo,manual</distribution> </license> </licenses> <developers> <developer> <name>zhangyu.lzj</name> <email>zhangyu.lzj@bytedance.com</email> <organization>bytedance</organization> <url>https://github.com/byteplus-rec</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/byteplus-sdk/byteplus-sdk-java-rec.git</connection> <developerConnection>scm:git:https://github.com/byteplus-sdk/byteplus-sdk-java-rec.git</developerConnection> <url>https://github.com/byteplus-sdk</url> <tag>1.0.21</tag> </scm> <distributionManagement> <snapshotRepository> <id>byteplus</id> <name>OSS Snapshots Repository</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>byteplus</id> <name>OSS Staging Repository</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>