Download spring-boot-admin-server-1.3.2.jar file

Introduction

You can download spring-boot-admin-server-1.3.2.jar in this page.

License

Open Source

Type List

spring-boot-admin-server-1.3.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/additional-spring-configuration-metadata.json
META-INF/maven/de.codecentric/spring-boot-admin-server/pom.properties
META-INF/maven/de.codecentric/spring-boot-admin-server/pom.xml
META-INF/spring-configuration-metadata.json
de.codecentric.boot.admin.config.AdminServerImportSelector.class
de.codecentric.boot.admin.config.AdminServerProperties.class
de.codecentric.boot.admin.config.AdminServerWebConfiguration.class
de.codecentric.boot.admin.config.DiscoveryClientConfiguration.class
de.codecentric.boot.admin.config.EnableAdminServer.class
de.codecentric.boot.admin.config.HazelcastStoreConfiguration.class
de.codecentric.boot.admin.config.MailNotifierConfiguration.class
de.codecentric.boot.admin.config.PagerdutyNotifierConfiguration.class
de.codecentric.boot.admin.config.RevereseZuulProxyConfiguration.class
de.codecentric.boot.admin.controller.JournalController.class
de.codecentric.boot.admin.controller.RegistryController.class
de.codecentric.boot.admin.discovery.ApplicationDiscoveryListener.class
de.codecentric.boot.admin.event.ClientApplicationDeregisteredEvent.class
de.codecentric.boot.admin.event.ClientApplicationEvent.class
de.codecentric.boot.admin.event.ClientApplicationRegisteredEvent.class
de.codecentric.boot.admin.event.ClientApplicationStatusChangedEvent.class
de.codecentric.boot.admin.event.RoutesOutdatedEvent.class
de.codecentric.boot.admin.journal.ApplicationEventJournal.class
de.codecentric.boot.admin.journal.store.HazelcastJournaledEventStore.class
de.codecentric.boot.admin.journal.store.JournaledEventStore.class
de.codecentric.boot.admin.journal.store.SimpleJournaledEventStore.class
de.codecentric.boot.admin.notify.AbstractNotifier.class
de.codecentric.boot.admin.notify.MailNotifier.class
de.codecentric.boot.admin.notify.PagerdutyNotifier.class
de.codecentric.boot.admin.registry.ApplicationIdGenerator.class
de.codecentric.boot.admin.registry.ApplicationRegistry.class
de.codecentric.boot.admin.registry.HashingApplicationUrlIdGenerator.class
de.codecentric.boot.admin.registry.StatusUpdater.class
de.codecentric.boot.admin.registry.store.ApplicationStore.class
de.codecentric.boot.admin.registry.store.HazelcastApplicationStore.class
de.codecentric.boot.admin.registry.store.SimpleApplicationStore.class
de.codecentric.boot.admin.web.PrefixHandlerMapping.class
de.codecentric.boot.admin.zuul.ApplicationRouteLocator.class
de.codecentric.boot.admin.zuul.PreDecorationFilter.class

Pom

spring-boot-admin-server-1.3.2.pom file content.

<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>
	<parent>
		<groupId>de.codecentric</groupId>
		<artifactId>spring-boot-admin</artifactId>
		<version>1.3.2</version>
		<relativePath>..</relativePath>
	</parent>
	<artifactId>spring-boot-admin-server</artifactId>
	<dependencies>
		<dependency>
			<groupId>de.codecentric</groupId>
			<artifactId>spring-boot-admin-starter-client</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
		</dependency>
		<!-- Use Zuul WITHOUT Hystrix/Ribbon/Config Client -->
		<dependency>
			<groupId>com.netflix.zuul</groupId>
			<artifactId>zuul-core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-commons</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
		</dependency>
                <!-- Optional Mail Starter for mail-notfications -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-mail</artifactId>
                        <optional>true</optional>
		</dependency>
		<!-- Optional Discovery Client -->
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Optional Hazelcast-Support -->
		<dependency>
			<groupId>com.hazelcast</groupId>
			<artifactId>hazelcast</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Optional Configuration Processor for metadata -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Test -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<finalName>${project.artifactId}</finalName>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
				<includes>
					<include>application.properties</include>
				</includes>
			</resource>
		</resources>
	</build>
</project>

POM Entry

<dependency>
   <groupId>de.codecentric</groupId>
   <artifactId>spring-boot-admin-server</artifactId>
   <version>1.3.2</version>
</dependency>

Download

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



Download spring-boot-admin-server-1.3.2.jar file




PreviousNext

Related