miniapp-server-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.taobao.open-link-platform</groupId> <artifactId>miniapp-server-sdk</artifactId> <version>1.4</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"> <!--<parent>--> <!--<groupId>com.taobao</groupId>--> <!--<artifactId>parent</artifactId>--> <!--<version>2.0.0</version>--> <!--</parent>--> <modelVersion>4.0.0</modelVersion> <groupId>com.taobao.open-link-platform</groupId> <artifactId>miniapp-server-sdk</artifactId> <packaging>pom</packaging> <version>1.4</version> <modules> <module>miniapp-session-sdk</module> </modules> <name>Taobao Miniapp Server SDK</name> <description>Taobao miniapp SDK for third-party session checking</description> <url>https://developer.taobao.com/</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</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.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.16</version> <configuration> <verbose>false</verbose> </configuration> <executions> <execution> <id>first</id> <goals> <goal>add-third-party</goal> <!--<goal>aggregate-add-third-party</goal>--> <goal>update-file-header</goal> <goal>update-project-license</goal> </goals> <phase>process-sources</phase> <configuration> <licenseName>gpl_v3</licenseName> <organizationName>Alibaba Group</organizationName> <inceptionYear>2018</inceptionYear> <roots> <root>src/main/java</root> <root>src/test</root> </roots> </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> <!-- for maven central--> <inceptionYear>2018</inceptionYear> <organization> <name>Alibaba Group</name> <url>https://github.com/alibaba</url> </organization> <licenses> <license> <name>GNU-JEFF General Public License (GPL)</name> <url>http://www.gnu.org/licenses/gpl.txt</url> </license> </licenses> <developers> <developer> <name>shutong</name> <organization>Alibaba Group</organization> <organizationUrl>https://www.alibaba.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</connection> <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</developerConnection> <url>https://github.com/apache/maven/tree/${project.scm.tag}</url> <tag>master</tag> </scm> <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> </project>