Download spring-boot-configuration-processor-1.4.0.release.jar file

Introduction

You can download spring-boot-configuration-processor-1.4.0.release.jar in this page.

License

Apache Open Source

Type List

spring-boot-configuration-processor-1.4.0.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.boot/spring-boot-configuration-processor/pom.properties
META-INF/maven/org.springframework.boot/spring-boot-configuration-processor/pom.xml
META-INF/services/javax.annotation.processing.Processor
org.springframework.boot.configurationprocessor.ConfigurationMetadataAnnotationProcessor.class
org.springframework.boot.configurationprocessor.MetadataCollector.class
org.springframework.boot.configurationprocessor.MetadataStore.class
org.springframework.boot.configurationprocessor.TypeElementMembers.class
org.springframework.boot.configurationprocessor.TypeExcludeFilter.class
org.springframework.boot.configurationprocessor.TypeUtils.class
org.springframework.boot.configurationprocessor.fieldvalues.FieldValuesParser.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.ExpressionTree.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.JavaCompilerFieldValuesParser.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.ReflectionWrapper.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.Tree.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.TreeVisitor.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.Trees.class
org.springframework.boot.configurationprocessor.fieldvalues.javac.VariableTree.class
org.springframework.boot.configurationprocessor.metadata.ConfigurationMetadata.class
org.springframework.boot.configurationprocessor.metadata.InvalidConfigurationMetadataException.class
org.springframework.boot.configurationprocessor.metadata.ItemDeprecation.class
org.springframework.boot.configurationprocessor.metadata.ItemHint.class
org.springframework.boot.configurationprocessor.metadata.ItemMetadata.class
org.springframework.boot.configurationprocessor.metadata.JsonMarshaller.class

Pom

spring-boot-configuration-processor-1.4.0.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>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-tools</artifactId>
		<version>1.4.0.RELEASE</version>
	</parent>
	<artifactId>spring-boot-configuration-processor</artifactId>
	<name>Spring Boot Configuration Processor</name>
	<description>Spring Boot Configuration Processor</description>
	<url>http://projects.spring.io/spring-boot/</url>
	<organization>
		<name>Pivotal Software, Inc.</name>
		<url>http://www.spring.io</url>
	</organization>
	<properties>
		<main.basedir>${basedir}/../..</main.basedir>
	</properties>
	<dependencies>
 		<!-- Compile (should stick to the bare minimum) -->
 		<dependency>
			<groupId>org.json</groupId>
			<artifactId>json</artifactId>
		</dependency>
		<!-- Test -->
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-core</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<!-- Ensure own annotation processor doesn't kick in -->
					<proc>none</proc>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-configuration-processor</artifactId>
   <version>1.4.0.release</version>
</dependency>

Download

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



Download spring-boot-configuration-processor-1.4.0.release.jar file




PreviousNext

Related