guiced-injection
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.jwebmp.jre10</groupId>
<artifactId>guiced-injection</artifactId>
<version>0.60.0.1</version>
</dependency><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
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.jwebmp.jre10</groupId>
<artifactId>jwebmp-parent</artifactId>
<version>0.60.0.1</version>
</parent>
<artifactId>guiced-injection</artifactId>
<packaging>jar</packaging>
<name>Guiced Injector</name>
<description>Guice Injection allows you to access multiple Guice Binders and Modules across separate archives.
Allowing you to configure your applications with injection from multiple dependancies. Servlets, EJB's, and
Stand-Alone is supported. Requires JDK 8 or 10.
</description>
<url>https://github.com/GedMarc/GuiceInjection</url>
<dependencies>
<dependency>
<groupId>com.jwebmp.jre10</groupId>
<artifactId>jwebmp-log-master</artifactId>
<version>0.60.0.1</version>
<classifier></classifier>
<optional>false</optional>
<type>jar</type>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<!-- Jackson Support-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-parameter-names</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<!-- Test Dependencies-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
<scm>
<url>https://github.com/GedMarc?tab=repositories</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/GedMarc/GuiceInjection/issues</url>
</issueManagement>
<ciManagement>
<system>TeamCity</system>
<url>http://jwebmp.com/teamcity</url>
</ciManagement>
</project>