Download spring-cloud-config-server-1.2.2.release.jar file

Introduction

You can download spring-cloud-config-server-1.2.2.release.jar in this page.

License

Apache Open Source

Type List

spring-cloud-config-server-1.2.2.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.cloud/spring-cloud-config-server/pom.properties
META-INF/maven/org.springframework.cloud/spring-cloud-config-server/pom.xml
META-INF/spring-configuration-metadata.json
META-INF/spring.factories
configserver.yml
org.springframework.cloud.config.server.ConfigServerApplication.class
org.springframework.cloud.config.server.EnableConfigServer.class
org.springframework.cloud.config.server.bootstrap.ConfigServerBootstrapApplicationListener.class
org.springframework.cloud.config.server.bootstrap.ConfigServerBootstrapConfiguration.class
org.springframework.cloud.config.server.config.ConfigServerAutoConfiguration.class
org.springframework.cloud.config.server.config.ConfigServerConfiguration.class
org.springframework.cloud.config.server.config.ConfigServerEncryptionConfiguration.class
org.springframework.cloud.config.server.config.ConfigServerHealthIndicator.class
org.springframework.cloud.config.server.config.ConfigServerMvcConfiguration.class
org.springframework.cloud.config.server.config.ConfigServerProperties.class
org.springframework.cloud.config.server.config.EncryptionAutoConfiguration.class
org.springframework.cloud.config.server.config.EnvironmentRepositoryConfiguration.class
org.springframework.cloud.config.server.config.ResourceRepositoryConfiguration.class
org.springframework.cloud.config.server.config.SingleEncryptorAutoConfiguration.class
org.springframework.cloud.config.server.encryption.CipherEnvironmentEncryptor.class
org.springframework.cloud.config.server.encryption.EncryptionController.class
org.springframework.cloud.config.server.encryption.EnvironmentEncryptor.class
org.springframework.cloud.config.server.encryption.EnvironmentPrefixHelper.class
org.springframework.cloud.config.server.encryption.InvalidCipherException.class
org.springframework.cloud.config.server.encryption.KeyNotAvailableException.class
org.springframework.cloud.config.server.encryption.KeyNotInstalledException.class
org.springframework.cloud.config.server.encryption.KeyStoreTextEncryptorLocator.class
org.springframework.cloud.config.server.encryption.PassthruSecretLocator.class
org.springframework.cloud.config.server.encryption.SecretLocator.class
org.springframework.cloud.config.server.encryption.SingleTextEncryptorLocator.class
org.springframework.cloud.config.server.encryption.TextEncryptorLocator.class
org.springframework.cloud.config.server.environment.AbstractScmEnvironmentRepository.class
org.springframework.cloud.config.server.environment.ConsulEnvironmentWatch.class
org.springframework.cloud.config.server.environment.EnvironmentCleaner.class
org.springframework.cloud.config.server.environment.EnvironmentController.class
org.springframework.cloud.config.server.environment.EnvironmentEncryptorEnvironmentRepository.class
org.springframework.cloud.config.server.environment.EnvironmentRepository.class
org.springframework.cloud.config.server.environment.EnvironmentRepositoryPropertySourceLocator.class
org.springframework.cloud.config.server.environment.EnvironmentWatch.class
org.springframework.cloud.config.server.environment.JGitEnvironmentRepository.class
org.springframework.cloud.config.server.environment.MultipleJGitEnvironmentRepository.class
org.springframework.cloud.config.server.environment.NativeEnvironmentRepository.class
org.springframework.cloud.config.server.environment.NoSuchLabelException.class
org.springframework.cloud.config.server.environment.PassthruEnvironmentRepository.class
org.springframework.cloud.config.server.environment.RepositoryException.class
org.springframework.cloud.config.server.environment.SearchPathLocator.class
org.springframework.cloud.config.server.environment.SerializableMapPropertySource.class
org.springframework.cloud.config.server.environment.SvnKitEnvironmentRepository.class
org.springframework.cloud.config.server.environment.VaultEnvironmentRepository.class
org.springframework.cloud.config.server.resource.GenericResourceRepository.class
org.springframework.cloud.config.server.resource.NoSuchResourceException.class
org.springframework.cloud.config.server.resource.ResourceController.class
org.springframework.cloud.config.server.resource.ResourceRepository.class
org.springframework.cloud.config.server.support.AbstractScmAccessor.class
org.springframework.cloud.config.server.support.EnvironmentPropertySource.class
org.springframework.cloud.config.server.test.ConfigServerTestUtils.class

Pom

spring-cloud-config-server-1.2.2.release.pom file content.

<?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>

	<artifactId>spring-cloud-config-server</artifactId>
	<packaging>jar</packaging>

	<name>spring-cloud-config-server</name>
	<description>spring-cloud-config-server</description>

	<parent>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-config</artifactId>
		<version>1.2.2.RELEASE</version>
		<relativePath>..</relativePath>
	</parent>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-config-client</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-crypto</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-rsa</artifactId>
		</dependency>
		<dependency>
			<groupId>org.eclipse.jgit</groupId>
			<artifactId>org.eclipse.jgit</artifactId>
		</dependency>
		<dependency>
			<groupId>org.yaml</groupId>
			<artifactId>snakeyaml</artifactId>
		</dependency>
		<dependency>
			<groupId>org.tmatesoft.svnkit</groupId>
			<artifactId>svnkit</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<spring-cloud.version>${project.version}</spring-cloud.version>
		<start-class>org.springframework.cloud.config.server.ConfigServerApplication</start-class>
		<java.version>1.7</java.version>
	</properties>

</project>

POM Entry

<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-config-server</artifactId>
   <version>1.2.2.release</version>
</dependency>

Download

If you think the following spring-cloud-config-server-1.2.2.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download spring-cloud-config-server-1.2.2.release.jar file




PreviousNext

Related