wire-di-bootstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-bootstrap</artifactId>
<version>1.0.0-alpha2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-development-root</artifactId>
<version>1.0.0-alpha2</version>
</parent>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-bootstrap</artifactId>
<version>1.0.0-alpha2</version>
<packaging>pom</packaging>
<name>WireDI Bootstrap</name>
<description>Easy and simple di using annotation processors</description>
<url>https://github.com/ThorbenKuck/SimpleDI</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java-poet.version>1.11.1</java-poet.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${google-auto-service.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>javapoet</artifactId>
<version>${java-poet.version}</version>
</dependency>
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-annotations</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-processor</artifactId>
<version>${revision}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-runtime-environment</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-runtime-environment</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-processor</artifactId>
<version>${revision}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>