spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.drtrang</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>1.1.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>com.github.drtrang</groupId> <artifactId>parent</artifactId> <version>1.2.3</version> </parent> <artifactId>spring-boot-autoconfigure</artifactId> <version>1.1.5</version> <name>Spring Boot AutoConfigure</name> <description>Spring Boot AutoConfigure</description> <url>https://github.com/drtrang/spring-boot-autoconfigure</url> <inceptionYear>2017</inceptionYear> <developers> <developer> <id>trang</id> <name>trang</name> <email>donghao.l@hotmail.com</email> <timezone>+8</timezone> <url>http://blog.trang.space/</url> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/drtrang/spring-boot-autoconfigure.git</connection> <developerConnection>scm:git:git@github.com:drtrang/spring-boot-autoconfigure.git</developerConnection> <url>https://github.com/drtrang/spring-boot-autoconfigure</url> <tag>HEAD</tag> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <optional>true</optional> </dependency> </dependencies> </project>