guiced-injection
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.guicedee</groupId> <artifactId>guiced-injection</artifactId> <version>0.67.0.15</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"> <parent> <groupId>com.jwebmp.guicedee</groupId> <artifactId>guiced-ee-modules</artifactId> <version>0.67.0.15</version> </parent> <modelVersion>4.0.0</modelVersion> <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.guicedee</groupId> <artifactId>guiced-log-master</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>aopalliance-core</artifactId> <type>jar</type> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.inject</groupId> <artifactId>guice</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>javax.inject</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <type>jar</type> </dependency> <!-- Jackson Support--> <dependency> <groupId>com.jwebmp.jpms.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.jpms.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.jpms.jackson.core</groupId> <artifactId>jackson-core</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.jpms.jackson.module</groupId> <artifactId>jackson-module-guice</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.jpms.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <type>jar</type> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${glassfish.jaxb.version}</version> </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> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</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> <profiles> <profile> <id>jdk8</id> <build> <plugins> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile> src/jre11/java/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>