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

Introduction

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

License

Open Source

Type List

spring-boot-admin-server-1.4.6.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.NotifierConfiguration.class
de.codecentric.boot.admin.config.RevereseZuulProxyConfiguration.class
de.codecentric.boot.admin.discovery.ApplicationDiscoveryListener.class
de.codecentric.boot.admin.discovery.DefaultServiceInstanceConverter.class
de.codecentric.boot.admin.discovery.EurekaServiceInstanceConverter.class
de.codecentric.boot.admin.discovery.ServiceInstanceConverter.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.io.resource.InMemoryFileResource.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.journal.web.JournalController.class
de.codecentric.boot.admin.notify.AbstractEventNotifier.class
de.codecentric.boot.admin.notify.AbstractStatusChangeNotifier.class
de.codecentric.boot.admin.notify.CompositeNotifier.class
de.codecentric.boot.admin.notify.HipchatNotifier.class
de.codecentric.boot.admin.notify.LoggingNotifier.class
de.codecentric.boot.admin.notify.MailNotifier.class
de.codecentric.boot.admin.notify.Notifier.class
de.codecentric.boot.admin.notify.NotifierListener.class
de.codecentric.boot.admin.notify.PagerdutyNotifier.class
de.codecentric.boot.admin.notify.RemindingNotifier.class
de.codecentric.boot.admin.notify.SlackNotifier.class
de.codecentric.boot.admin.notify.filter.ApplicationIdNotificationFilter.class
de.codecentric.boot.admin.notify.filter.ApplicationNameNotificationFilter.class
de.codecentric.boot.admin.notify.filter.ExpiringNotificationFilter.class
de.codecentric.boot.admin.notify.filter.FilteringNotifier.class
de.codecentric.boot.admin.notify.filter.NotificationFilter.class
de.codecentric.boot.admin.notify.filter.web.NotificationFilterController.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.StatusUpdateApplicationListener.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.registry.web.RegistryController.class
de.codecentric.boot.admin.web.AdminController.class
de.codecentric.boot.admin.web.PrefixHandlerMapping.class
de.codecentric.boot.admin.web.servlet.resource.ConcatenatingResourceResolver.class
de.codecentric.boot.admin.web.servlet.resource.PreferMinifiedFilteringResourceResolver.class
de.codecentric.boot.admin.web.servlet.resource.ResourcePatternResolvingResourceResolver.class
de.codecentric.boot.admin.zuul.ApplicationRouteLocator.class
de.codecentric.boot.admin.zuul.OptionsDispatchingZuulController.class
de.codecentric.boot.admin.zuul.filters.CompositeRouteLocator.class
de.codecentric.boot.admin.zuul.filters.post.SendResponseFilter.class
de.codecentric.boot.admin.zuul.filters.route.SimpleHostRoutingFilter.class

Pom

spring-boot-admin-server-1.4.6.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.4.6</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 archaius/Ribbon/Config Client -->
		<dependency>
			<groupId>com.netflix.zuul</groupId>
			<artifactId>zuul-core</artifactId>
		</dependency>
		<dependency>
			<!-- Remove when https://github.com/spring-cloud/spring-cloud-netflix/pull/1372 is resolved -->
			<groupId>com.netflix.netflix-commons</groupId>
			<artifactId>netflix-commons-util</artifactId>
		</dependency>
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-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 Eureka Discovery Client -->
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-eureka</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>
		<dependency>
			<groupId>com.jayway.jsonpath</groupId>
			<artifactId>json-path</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.4.6</version>
</dependency>

Download

If you think the following spring-boot-admin-server-1.4.6.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.4.6.jar file




PreviousNext

Related