solution-protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.aliyun.tpp</groupId>
<artifactId>solution-protocol</artifactId>
<version>1.0</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.aliyun.tpp</groupId>
<artifactId>solution-protocol</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>aliyun-tpp-solution-protocol</name>
<description>the basic solution protocol for tpp, aliyun cloud service</description>
<url>https://tpp.console.aliyun.com</url>
<licenses>
<license>
<name>mit</name>
</license>
</licenses>
<developers>
<developer>
<name>qixiang.mft</name>
</developer>
<developer>
<name>ouyi.oy</name>
</developer>
</developers>
<scm>
<url>https://github.com/aliyun/aliyun-tpp-solution-protocol</url>
<tag>1.0</tag>
</scm>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<license.licenseName>mit</license.licenseName>
</properties>
<organization>
<name>aliyun.com</name>
<url>https://www.aliyun.com</url>
</organization>
<inceptionYear>2021</inceptionYear>
<profiles>
<profile>
<id>oss-deploy</id>
</profile>
</profiles>
<build>
<plugins>
<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.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>-Xdoclint:none</additionalOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<verbose>true</verbose>
<addSvnKeyWords>false</addSvnKeyWords>
<processStartTag>========================LICENSE_START=================================</processStartTag>
<processEndTag>=========================LICENSE_END==================================</processEndTag>
<licenseFile>LICENSE</licenseFile>
<sectionDelimiter>---</sectionDelimiter>
<licenseName>mit</licenseName>
<projectName>${project.name}</projectName>
</configuration>
<executions>
<execution>
<id>add-license</id>
<goals>
<goal>update-project-license</goal>
</goals>
<phase>process-sources</phase>
</execution>
<execution>
<id>update-headers</id>
<goals>
<goal>update-file-header</goal>
</goals>
<configuration>
<licenseName>mit</licenseName>
<roots>
<root>src</root>
<root>target/generated-sources</root>
<root>target/processed-sources</root>
</roots>
<projectName>aliyun-tpp-solution-protocol</projectName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>