cdi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>cdi</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.guicedee</groupId>
<artifactId>cdi</artifactId>
<version>2.0.0</version>
<name>Guiced CDI</name>
<description>GuicedEE CDI provides a lightweight bridge that integrates Google Guice modules with Jakarta CDI runtimes.</description>
<url>https://github.com/GuicedEE/GuicedCDI</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>GedMarc</id>
<name>Marc Magon</name>
<email>marc.magon@gmail.com</email>
<url>https://github.com/GedMarc</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/GuicedEE/GuicedCDI.git</connection>
<developerConnection>scm:git:https://github.com/GuicedEE/GuicedCDI.git</developerConnection>
<url>https://github.com/GuicedEE/GuicedCDI.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.46</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>4.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>inject</artifactId>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>