nls-dialog-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alibaba.idst</groupId> <artifactId>nls-dialog-sdk</artifactId> <version>1.0.2.RELEASE</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> <name>ALIBABA IDST NLS DIALOG SDK</name> <description>this is the sdk of alibaba idst nls dialog sdk</description> <groupId>com.alibaba.idst</groupId> <artifactId>nls-dialog-sdk</artifactId> <version>1.0.2.RELEASE</version> <packaging>jar</packaging> <url>https://nls.console.aliyun.com</url> <dependencies> <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.5</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.12.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.28</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.60</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.20</version> <scope>provided</scope> </dependency> </dependencies> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</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.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <encoding>UTF8</encoding> <aggregate>true</aggregate> <charset>UTF8</charset> <docencoding>UTF8</docencoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </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> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <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> <scm> <url>https://github.com/alibaba/nls-dialog-sdk/tree/${project.scm.tag}</url> </scm> <developers> <developer> <name>niesongyang</name> <email>songyang.nsy@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> <developer> <name>hanlu</name> <email>lu.hl@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> <developer> <name>lixingxing</name> <email>yukong.lxx@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> <developer> <name>zhouyuan</name> <email>zhouy.zy@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> <developer> <name>bianchuanmeng</name> <email>chuanmeng.bcm@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> <developer> <name>jianghaitao</name> <email>shundao.jht@alibaba-inc.com</email> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> </developers> </project>