auto-spring-factories
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.XDean</groupId> <artifactId>auto-spring-factories</artifactId> <version>0.1.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.XDean</groupId> <artifactId>oss-parent</artifactId> <version>1.1</version> </parent> <artifactId>auto-spring-factories</artifactId> <version>0.1.2</version> <packaging>jar</packaging> <name>Auto spring.factories</name> <description>Auto Generate spring.factories</description> <url>https://github.com/XDean/auto-spring-factories</url> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.XDean</groupId> <artifactId>dependency-parent</artifactId> <version>1.1</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>23.1-jre</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.github.XDean</groupId> <artifactId>AnnotationProcessorToolkit</artifactId> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.XDean</groupId> <artifactId>compile-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.github.XDean</groupId> <artifactId>spring-annotation</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:${scm.url}</connection> <developerConnection>scm:${scm.url}</developerConnection> <url>${scm.url}</url> </scm> </project>