Skip to content

Instantly share code, notes, and snippets.

@Daniel-Dos
Created April 14, 2020 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Daniel-Dos/a06c58fc25292f0af2803bbfe4a427b6 to your computer and use it in GitHub Desktop.
Save Daniel-Dos/a06c58fc25292f0af2803bbfe4a427b6 to your computer and use it in GitHub Desktop.
<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.medium.danieldiasjava.openwebbean</groupId>
<artifactId>openwebbean</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>OpenWebBean CDI</name>
<description>openWebBeanCDI</description>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.openwebbeans</groupId>
<artifactId>openwebbeans-se</artifactId>
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
<build>
<finalName>openWebBeanCDI</finalName>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment