wire-di-runtime-environment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-runtime-environment</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-runtime-environment</artifactId>
<version>1.0.0-alpha2</version>
<name>WireDI Core</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>
<developers>
<developer>
<id>thorbenkuck</id>
<name>Thorben Kuck</name>
<email>thorben.kuck@gmail.com</email>
</developer>
</developers>
<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>
<dependencies>
<dependency>
<groupId>com.github.thorbenkuck</groupId>
<artifactId>wire-di-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.22.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>