Skip to content

Commit 6fe9ec0

Browse files
committed
feat: include pom.xml
Signed-off-by: Otavio Santana <[email protected]>
1 parent c7d6ed4 commit 6fe9ec0

File tree

1 file changed

+195
-0
lines changed

1 file changed

+195
-0
lines changed

pom.xml

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
<!--
2+
~ Copyright (c) 2022 Contributors to the Eclipse Foundation
3+
~ All rights reserved. This program and the accompanying materials
4+
~ are made available under the terms of the Eclipse Public License v1.0
5+
~ and Apache License v2.0 which accompanies this distribution.
6+
~ The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
~ and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
8+
~
9+
~ You may elect to redistribute this code under either of these licenses.
10+
-->
11+
12+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13+
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
14+
<modelVersion>4.0.0</modelVersion>
15+
<groupId>org.soujava.demos.mongodb</groupId>
16+
<artifactId>behavior-driven-test</artifactId>
17+
<version>1.0.0</version>
18+
<name>JNoSQL Demo using Java SE MongoDB exploring Behavior Driven Test</name>
19+
20+
<properties>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
<jnosql.version>1.1.10</jnosql.version>
23+
<maven.compiler.source>21</maven.compiler.source>
24+
<maven.compiler.target>21</maven.compiler.target>
25+
<maven.compile.version>3.5.1</maven.compile.version>
26+
<maven-surefire-plugin.version>3.1.0</maven-surefire-plugin.version>
27+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28+
<jakarta.json.bind.version>3.0.0</jakarta.json.bind.version>
29+
<jakarta.json.version>2.1.1</jakarta.json.version>
30+
<tinkerpop.version>3.6.1</tinkerpop.version>
31+
<weld.se.core.version>6.0.3.Final</weld.se.core.version>
32+
<mockito.verson>5.18.0</mockito.verson>
33+
<assertj.version>3.24.2</assertj.version>
34+
<junit.version>5.9.2</junit.version>
35+
</properties>
36+
37+
<dependencies>
38+
<dependency>
39+
<groupId>net.datafaker</groupId>
40+
<artifactId>datafaker</artifactId>
41+
<version>2.4.4</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.eclipse.jnosql.databases</groupId>
45+
<artifactId>jnosql-mongodb</artifactId>
46+
<version>${jnosql.version}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.jboss.weld.se</groupId>
50+
<artifactId>weld-se-shaded</artifactId>
51+
<version>${weld.se.core.version}</version>
52+
<scope>compile</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.eclipse</groupId>
56+
<artifactId>yasson</artifactId>
57+
<version>3.0.4</version>
58+
<scope>compile</scope>
59+
</dependency>
60+
<dependency>
61+
<groupId>io.smallrye.config</groupId>
62+
<artifactId>smallrye-config-core</artifactId>
63+
<version>3.13.3</version>
64+
<scope>compile</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.eclipse.microprofile.config</groupId>
68+
<artifactId>microprofile-config-api</artifactId>
69+
<version>3.1</version>
70+
<scope>compile</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.junit.jupiter</groupId>
74+
<artifactId>junit-jupiter-api</artifactId>
75+
<version>${junit.version}</version>
76+
<scope>test</scope>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.junit.jupiter</groupId>
80+
<artifactId>junit-jupiter-engine</artifactId>
81+
<version>${junit.version}</version>
82+
<scope>test</scope>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.junit.jupiter</groupId>
86+
<artifactId>junit-jupiter-params</artifactId>
87+
<version>${junit.version}</version>
88+
<scope>test</scope>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.mockito</groupId>
92+
<artifactId>mockito-core</artifactId>
93+
<version>${mockito.verson}</version>
94+
<scope>test</scope>
95+
</dependency>
96+
<dependency>
97+
<groupId>org.mockito</groupId>
98+
<artifactId>mockito-junit-jupiter</artifactId>
99+
<version>${mockito.verson}</version>
100+
<scope>test</scope>
101+
</dependency>
102+
<dependency>
103+
<groupId>org.jboss.weld</groupId>
104+
<artifactId>weld-junit5</artifactId>
105+
<version>5.0.1.Final</version>
106+
<scope>test</scope>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.testcontainers</groupId>
110+
<artifactId>mongodb</artifactId>
111+
<version>1.21.3</version>
112+
<scope>test</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.assertj</groupId>
116+
<artifactId>assertj-core</artifactId>
117+
<version>3.27.3</version>
118+
<scope>test</scope>
119+
</dependency>
120+
</dependencies>
121+
<build>
122+
<pluginManagement>
123+
<plugins>
124+
<plugin>
125+
<groupId>org.apache.maven.plugins</groupId>
126+
<artifactId>maven-compiler-plugin</artifactId>
127+
<version>${maven.compile.version}</version>
128+
<configuration>
129+
<target>${maven.compiler.target}</target>
130+
<source>${maven.compiler.source}</source>
131+
</configuration>
132+
</plugin>
133+
<plugin>
134+
<groupId>org.apache.maven.plugins</groupId>
135+
<artifactId>maven-surefire-plugin</artifactId>
136+
<version>${maven-surefire-plugin.version}</version>
137+
</plugin>
138+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
139+
<plugin>
140+
<groupId>org.eclipse.m2e</groupId>
141+
<artifactId>lifecycle-mapping</artifactId>
142+
<version>1.1.4</version>
143+
<configuration>
144+
<lifecycleMappingMetadata>
145+
<pluginExecutions>
146+
<pluginExecution>
147+
<pluginExecutionFilter>
148+
<groupId>
149+
org.apache.rat
150+
</groupId>
151+
<artifactId>
152+
apache-rat-plugin
153+
</artifactId>
154+
<versionRange>
155+
[0.12,)
156+
</versionRange>
157+
<goals>
158+
<goal>check</goal>
159+
</goals>
160+
</pluginExecutionFilter>
161+
<action>
162+
<ignore></ignore>
163+
</action>
164+
</pluginExecution>
165+
</pluginExecutions>
166+
</lifecycleMappingMetadata>
167+
</configuration>
168+
</plugin>
169+
</plugins>
170+
</pluginManagement>
171+
</build>
172+
173+
<repositories>
174+
<repository>
175+
<id>jakarta.sonatype.org-snapshot</id>
176+
<url>https://jakarta.oss.sonatype.org/content/repositories/snapshots/</url>
177+
<releases>
178+
<enabled>false</enabled>
179+
</releases>
180+
<snapshots>
181+
<enabled>true</enabled>
182+
</snapshots>
183+
</repository>
184+
<repository>
185+
<id>oss.sonatype.org-snapshot</id>
186+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
187+
<releases>
188+
<enabled>false</enabled>
189+
</releases>
190+
<snapshots>
191+
<enabled>true</enabled>
192+
</snapshots>
193+
</repository>
194+
</repositories>
195+
</project>

0 commit comments

Comments
 (0)