config-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.taobao.configserver</groupId> <artifactId>config-client</artifactId> <version>2.0.6-open-sock5</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.taobao.configserver</groupId> <artifactId>config-client</artifactId> <name>[${project.groupId}]-[${project.artifactId}]-[${project.version}]</name> <version>2.0.6-open-sock5</version> <description>configclient</description> <url>http://edas.console.aliyun.com</url> <developers> <developer> <name>xxc</name> <email>xchaos8@126.com</email> </developer> </developers> <contributors> <contributor> <properties> <codeName>null</codeName> <codeUrl>http://gitlab.alibaba-inc.com/middleware-config/configclient.git commit:6386ec6</codeUrl> <description>contributors added by SCM Plugin, please don't modify it!</description> <provider>xchaos8@126.com</provider> </properties> </contributor> </contributors> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://svn.apache.org/viewvc/maven</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>6</source> <target>6</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <encoding>gbk</encoding> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope> <promoteTransitiveDependencies>false</promoteTransitiveDependencies> <minimizeJar>false</minimizeJar> <shadeSourcesContent>true</shadeSourcesContent> <relocations> <relocation> <pattern>com.alibaba.fastjson</pattern> <shadedPattern>com.alibaba.cs.shaded.com.alibaba.fastjson</shadedPattern> </relocation> <relocation> <pattern>com.alibaba.middleware</pattern> <shadedPattern>com.alibaba.cs.shaded.com.alibaba.middleware</shadedPattern> </relocation> <relocation> <pattern>com.alibaba</pattern> <shadedPattern>com.alibaba.cs.shaded.com.alibaba</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sona</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sona</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.alibaba.middleware</groupId> <artifactId>pandolet-api</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>gbk</project.build.sourceEncoding> <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format> </properties> </project>