spring-boot-autoconfigure-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.andromedae.plugin</groupId> <artifactId>spring-boot-autoconfigure-plugin</artifactId> <version>1.0.0.RC2</version> </dependency>
<?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> <groupId>org.andromedae.plugin</groupId> <artifactId>spring-boot-autoconfigure-plugin</artifactId> <version>1.0.0.RC2</version> <packaging>jar</packaging> <name>SpringBoot Autoconfigure Plugin</name> <description>Do for springboot 2.7 or higher.</description> <url>https://opensource.andromedae.org</url> <organization> <name>Andromedae Open Source</name> <url>https://opensource.andromedae.org</url> </organization> <scm> <url>https://opensource.andromedae.org</url> </scm> <developers> <developer> <name>Raphiel</name> <email>raphielainsworth@gmail.com</email> <timezone>+8</timezone> </developer> </developers> <licenses> <license> <name>Mulan Public License,Version 2</name> <url>http://license.coscl.org.cn/MulanPSL2</url> <comments> Copyright (c) 2016-2022 the original author or authors. spring-boot-autoconfigure-plugin is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. </comments> <distribution>repo</distribution> </license> </licenses> <properties> <java.version>1.8</java.version> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <maven.default.encoding>UTF-8</maven.default.encoding> <project.default.encoding>UTF-8</project.default.encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <google-auto-service.version>1.0.1</google-auto-service.version> </properties> <dependencies> <!-- Google AutoService Processor --> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>${google-auto-service.version}</version> <scope>compile</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>${maven.compiler.encoding}</encoding> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <verbose>true</verbose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>private</show> <nohelp>true</nohelp> <charset>${maven.default.encoding}</charset> <encoding>${maven.default.encoding}</encoding> <docencoding>${maven.default.encoding}</docencoding> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sonatype-gpg</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>