Skip to content

Commit bb91e88

Browse files
committed
choreL include pom.xml
Signed-off-by: Otavio Santana <[email protected]>
1 parent d574a6a commit bb91e88

File tree

1 file changed

+177
-0
lines changed

1 file changed

+177
-0
lines changed

pom.xml

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
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>embedded</artifactId>
17+
<version>1.0.0</version>
18+
<name>JNoSQL Demo using Java SE MongoDB exploring Embedded</name>
19+
20+
<properties>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
<jnosql.version>1.1.4</jnosql.version>
23+
<maven.compiler.source>17</maven.compiler.source>
24+
<maven.compiler.target>17</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>5.1.0.Final</weld.se.core.version>
32+
<mockito.verson>4.11.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>org.jboss.weld.se</groupId>
40+
<artifactId>weld-se-shaded</artifactId>
41+
<version>${weld.se.core.version}</version>
42+
<scope>compile</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.eclipse</groupId>
46+
<artifactId>yasson</artifactId>
47+
<version>3.0.4</version>
48+
<scope>compile</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.smallrye.config</groupId>
52+
<artifactId>smallrye-config-core</artifactId>
53+
<version>3.2.1</version>
54+
<scope>compile</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.eclipse.microprofile.config</groupId>
58+
<artifactId>microprofile-config-api</artifactId>
59+
<version>3.0.2</version>
60+
<scope>compile</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.junit.jupiter</groupId>
64+
<artifactId>junit-jupiter-api</artifactId>
65+
<version>${junit.version}</version>
66+
<scope>test</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.junit.jupiter</groupId>
70+
<artifactId>junit-jupiter-engine</artifactId>
71+
<version>${junit.version}</version>
72+
<scope>test</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.junit.jupiter</groupId>
76+
<artifactId>junit-jupiter-params</artifactId>
77+
<version>${junit.version}</version>
78+
<scope>test</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.mockito</groupId>
82+
<artifactId>mockito-core</artifactId>
83+
<version>${mockito.verson}</version>
84+
<scope>test</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.mockito</groupId>
88+
<artifactId>mockito-junit-jupiter</artifactId>
89+
<version>${mockito.verson}</version>
90+
<scope>test</scope>
91+
</dependency>
92+
<dependency>
93+
<groupId>net.datafaker</groupId>
94+
<artifactId>datafaker</artifactId>
95+
<version>2.0.2</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.eclipse.jnosql.databases</groupId>
99+
<artifactId>jnosql-mongodb</artifactId>
100+
<version>1.1.4</version>
101+
</dependency>
102+
</dependencies>
103+
<build>
104+
<pluginManagement>
105+
<plugins>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-compiler-plugin</artifactId>
109+
<version>${maven.compile.version}</version>
110+
<configuration>
111+
<target>${maven.compiler.target}</target>
112+
<source>${maven.compiler.source}</source>
113+
</configuration>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-surefire-plugin</artifactId>
118+
<version>${maven-surefire-plugin.version}</version>
119+
</plugin>
120+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
121+
<plugin>
122+
<groupId>org.eclipse.m2e</groupId>
123+
<artifactId>lifecycle-mapping</artifactId>
124+
<version>1.1.4</version>
125+
<configuration>
126+
<lifecycleMappingMetadata>
127+
<pluginExecutions>
128+
<pluginExecution>
129+
<pluginExecutionFilter>
130+
<groupId>
131+
org.apache.rat
132+
</groupId>
133+
<artifactId>
134+
apache-rat-plugin
135+
</artifactId>
136+
<versionRange>
137+
[0.12,)
138+
</versionRange>
139+
<goals>
140+
<goal>check</goal>
141+
</goals>
142+
</pluginExecutionFilter>
143+
<action>
144+
<ignore></ignore>
145+
</action>
146+
</pluginExecution>
147+
</pluginExecutions>
148+
</lifecycleMappingMetadata>
149+
</configuration>
150+
</plugin>
151+
</plugins>
152+
</pluginManagement>
153+
</build>
154+
155+
<repositories>
156+
<repository>
157+
<id>jakarta.sonatype.org-snapshot</id>
158+
<url>https://jakarta.oss.sonatype.org/content/repositories/snapshots/</url>
159+
<releases>
160+
<enabled>false</enabled>
161+
</releases>
162+
<snapshots>
163+
<enabled>true</enabled>
164+
</snapshots>
165+
</repository>
166+
<repository>
167+
<id>oss.sonatype.org-snapshot</id>
168+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
169+
<releases>
170+
<enabled>false</enabled>
171+
</releases>
172+
<snapshots>
173+
<enabled>true</enabled>
174+
</snapshots>
175+
</repository>
176+
</repositories>
177+
</project>

0 commit comments

Comments
 (0)