spring-boot spring-boot-autoconfiguration spring-boot-bootstrap spring-boot-client spring-boot-ctx-fluent spring-boot-disable-console-logging spring-boot-jasypt spring-boot-mvc spring-boot-ops spring-boot-vue spring-cloud/spring-cloud-vault spring-data-rest
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<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>disabling-console-jul</artifactId>
 | 
						|
	<name>disabling-console-jul</name>
 | 
						|
	<!-- this needs to use the boot parent directly in order to not inherit logback dependencies -->
 | 
						|
	
 | 
						|
	<parent>
 | 
						|
		<groupId>org.springframework.boot</groupId>
 | 
						|
		<artifactId>spring-boot-starter-parent</artifactId>
 | 
						|
		<version>2.1.1.RELEASE</version>
 | 
						|
	</parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter</artifactId>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>org.springframework.boot</groupId>
 | 
						|
                    <artifactId>spring-boot-starter-logging</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.slf4j</groupId>
 | 
						|
            <artifactId>jul-to-slf4j</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.slf4j</groupId>
 | 
						|
            <artifactId>slf4j-simple</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
</project> |