cloud-discovery
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dbses</groupId> <artifactId>cloud-discovery</artifactId> <version>Finchley.1.0.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>io.github.dbses</groupId> <artifactId>cloud-discovery</artifactId> <version>Finchley.1.0.0</version> <name>${project.groupId}:${project.artifactId}</name> <description>spring boot starter for Kubernetes Discovery</description> <packaging>pom</packaging> <url>https://github.com/dbses/cloud-discovery</url> <properties> <spring-cloud.version>Finchley.RELEASE</spring-cloud.version> <spring-boot.version>2.0.4.RELEASE</spring-boot.version> <project.build.jdk>1.8</project.build.jdk> <project.build.locales>zh_CN</project.build.locales> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <modules> <module>cloud-discovery-starter</module> <module>cloud-discovery-example</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <licenses> <license> <name>MIT</name> <url>https://github.com/dbses/cloud-discovery/blob/master/LICENSE</url> </license> </licenses> <scm> <connection>https://github.com/dbses/cloud-discovery.git</connection> <url>https://github.com/dbses/cloud-discovery</url> </scm> <developers> <developer> <name>dbses</name> <email>yanglu_u@126.com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>ossrh</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- 编译插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!-- Gpg Signature --> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <!-- <build>--> <!-- <finalName>${artifactId}</finalName>--> <!-- <plugins>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-source-plugin</artifactId>--> <!-- <version>3.0.1</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>compile</phase>--> <!-- <goals>--> <!-- <goal>jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-compiler-plugin</artifactId>--> <!-- <version>3.7.0</version>--> <!-- <configuration>--> <!-- <source>${project.build.jdk}</source>--> <!-- <target>${project.build.jdk}</target>--> <!-- <encoding>${project.build.sourceEncoding}</encoding>--> <!-- </configuration>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-javadoc-plugin</artifactId>--> <!-- <version>3.1.1</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>package</phase>--> <!-- <goals>--> <!-- <goal>jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <!– Gpg Signature –>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-gpg-plugin</artifactId>--> <!-- <version>1.6</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>oss</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.8</version>--> <!-- <extensions>true</extensions>--> <!-- <configuration>--> <!-- <serverId>oss</serverId>--> <!-- <nexusUrl>https://s01.oss.sonatype.org</nexusUrl>--> <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>--> <!-- </configuration>--> <!-- </plugin>--> <!-- </plugins>--> <!-- </build>--> </project>