resteasy-guice
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.resteasy.guice</groupId> <artifactId>resteasy-guice</artifactId> <version>1.0.0.Alpha1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright The RESTEasy Authors ~ SPDX-License-Identifier: Apache-2.0 --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>dev.resteasy.tools</groupId> <artifactId>resteasy-parent</artifactId> <version>2.0.4.Final</version> <relativePath/> </parent> <groupId>dev.resteasy.guice</groupId> <artifactId>resteasy-guice</artifactId> <version>1.0.0.Alpha1</version> <name>RESTEasy Guice</name> <description/> <properties> <!-- Dependency Versions, keep in alphabetical order --> <version.jakarta.ee>10.0.0</version.jakarta.ee> <version.com.google.inject.guice>7.0.0</version.com.google.inject.guice> <version.org.jboss.logging>3.6.0.Final</version.org.jboss.logging> <version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools> <version.org.jboss.resteasy>6.2.9.Final</version.org.jboss.resteasy> <version.org.junit>5.10.2</version.org.junit> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-bom</artifactId> <version>${version.jakarta.ee}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-bom</artifactId> <version>${version.org.jboss.resteasy}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${version.org.junit}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>${version.com.google.inject.guice}</version> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-core-spi</artifactId> <version>${version.org.jboss.resteasy}</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> <version>${version.org.jboss.resteasy}</version> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>${version.org.jboss.logging}</version> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>${version.org.jboss.logging.jboss-logging-tools}</version> <!-- This is a compile time only requirement --> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <version>${version.org.jboss.logging.jboss-logging-tools}</version> <!-- This is a compile time only requirement --> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-netty4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> </plugin> </plugins> </build> </project>