Skip to content

Commit 801b566

Browse files
committed
feat: add Weld SE, Yasson, and SmallRye Config dependencies to pom.xml
1 parent 6ed2ab0 commit 801b566

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<maven.compiler.source>21</maven.compiler.source>
1515
<maven.compiler.target>21</maven.compiler.target>
1616
<jnosql.version>1.1.10</jnosql.version>
17+
<weld.se.core.version>6.0.3.Final</weld.se.core.version>
1718
</properties>
1819

1920
<dependencyManagement>
@@ -43,6 +44,24 @@
4344
</dependencyManagement>
4445

4546
<dependencies>
47+
<dependency>
48+
<groupId>org.jboss.weld.se</groupId>
49+
<artifactId>weld-se-shaded</artifactId>
50+
<version>${weld.se.core.version}</version>
51+
<scope>compile</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.eclipse</groupId>
55+
<artifactId>yasson</artifactId>
56+
<version>3.0.4</version>
57+
<scope>compile</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>io.smallrye.config</groupId>
61+
<artifactId>smallrye-config-core</artifactId>
62+
<version>3.13.3</version>
63+
<scope>compile</scope>
64+
</dependency>
4665
<dependency>
4766
<groupId>org.eclipse.jnosql.databases</groupId>
4867
<artifactId>jnosql-mongodb</artifactId>
@@ -71,6 +90,11 @@
7190
<artifactId>assertj-core</artifactId>
7291
<scope>test</scope>
7392
</dependency>
93+
<dependency>
94+
<groupId>org.junit.vintage</groupId>
95+
<artifactId>junit-vintage-engine</artifactId>
96+
<scope>test</scope>
97+
</dependency>
7498
</dependencies>
7599

76100
<build>

0 commit comments

Comments
 (0)