config-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mayhoo</groupId>
<artifactId>config-server</artifactId>
<version>3.0.3</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mayhoo</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<artifactId>config-server</artifactId>
<version>3.0.3</version>
<name>Spring Cloud Config Server</name>
<description>Spring Cloud Config Server</description>
<properties>
<java.version>17</java.version>
<jib-maven-plugin.version>3.4.2</jib-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>${jib-maven-plugin.version}</version>
<configuration>
<to>
<tags>${project.version}</tags>
</to>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<developerConnection>scm:git:ssh://git@bitbucket.org/djmay/config-server.git</developerConnection>
<connection>scm:git:https://git@bitbucket.org/djmay/config-server.git</connection>
<url>https://bitbucket.org/djmay/config-server</url>
<tag>config-server-3.0.3</tag>
</scm>
</project>