Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 2be8977

Browse files
Merge pull request #176 from Trivadis/feature/issue-175-merge-test
Feature/issue 175 Merge tests project into standalone project
2 parents bfe8c84 + 90c0066 commit 2be8977

File tree

184 files changed

+122
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+122
-306
lines changed

standalone/README.md

Lines changed: 13 additions & 4 deletions

standalone/pom.xml

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,50 @@
3333
<version>${graalvm.version}</version>
3434
<scope>compile</scope>
3535
</dependency>
36-
<!-- SQLcl dependencies not available in public Maven repositories -->
36+
<!-- SQLcl dependencies available in public Maven repositories -->
37+
<dependency>
38+
<groupId>com.google.guava</groupId>
39+
<artifactId>guava</artifactId>
40+
<version>31.0.1-jre</version>
41+
<scope>test</scope>
42+
</dependency>
43+
<!-- SQLcl dependencies not available in public Maven repositories (compile) -->
3744
<dependency>
3845
<groupId>oracle.dbtools</groupId>
3946
<artifactId>dbtools-common</artifactId>
4047
<version>${sqlcl.version}</version>
4148
<scope>system</scope>
4249
<systemPath>${sqlcl.libdir}/dbtools-common.jar</systemPath>
4350
</dependency>
51+
<!-- SQLcl dependencies not available in public Maven repositories (test) -->
52+
<dependency>
53+
<groupId>oracle.dbtools</groupId>
54+
<artifactId>dbtools-sqlcl</artifactId>
55+
<version>${sqlcl.version}</version>
56+
<scope>system</scope>
57+
<systemPath>${sqlcl.libdir}/dbtools-sqlcl.jar</systemPath>
58+
</dependency>
59+
<dependency>
60+
<groupId>oracle.xml</groupId>
61+
<artifactId>xmlparserv2-sans-jaxp-services</artifactId>
62+
<version>${sqlcl.version}</version>
63+
<scope>system</scope>
64+
<systemPath>${sqlcl.libdir}/xmlparserv2_sans_jaxp_services.jar</systemPath>
65+
</dependency>
66+
<dependency>
67+
<groupId>oracle.i18n</groupId>
68+
<artifactId>orai18n</artifactId>
69+
<version>${sqlcl.version}</version>
70+
<scope>system</scope>
71+
<systemPath>${sqlcl.libdir}/orai18n.jar</systemPath>
72+
</dependency>
73+
<dependency>
74+
<groupId>oracle.soda</groupId>
75+
<artifactId>orajsoda</artifactId>
76+
<version>${sqlcl.version}</version>
77+
<scope>system</scope>
78+
<systemPath>${sqlcl.libdir}/orajsoda.jar</systemPath>
79+
</dependency>
4480
<!-- GraalVM native image and Context -->
4581
<dependency>
4682
<groupId>org.graalvm.sdk</groupId>
@@ -56,6 +92,17 @@
5692
</dependency>
5793
</dependencies>
5894

95+
<!-- Reporting -->
96+
<reporting>
97+
<plugins>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-surefire-report-plugin</artifactId>
101+
<version>2.22.2</version>
102+
</plugin>
103+
</plugins>
104+
</reporting>
105+
59106
<!-- Build Settings -->
60107
<build>
61108
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
@@ -192,6 +239,7 @@
192239
<artifactId>maven-surefire-plugin</artifactId>
193240
<version>2.22.2</version>
194241
<configuration>
242+
<workingDirectory>${project.basedir}</workingDirectory>
195243
<includes>
196244
<include>**/*.java</include>
197245
</includes>

0 commit comments

Comments
 (0)