You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Don't forget to configure your JAVA_HOME environment variable.*
10
10
11
-
### Oracle Maven Repository
12
-
The library uses OJDBC Driver to connect to the database, it's added as a maven dependency. To be able to download the Oracle dependencies, you need to configure your access to Oracle's Maven Repository:
13
-
Create file `gradle.properties` in the root directory of the repository and place OTN credentials there:
After configuring your access to Oracle's Maven repository, you will be able to successfully build this API by disabling integration tests.
20
-
21
-
```bash
22
-
./gradlew build -x intTest
23
-
```
24
-
25
11
### Local database with utPLSQL and utPLSQL-demo-project
26
12
27
13
To usefully contribute you'll have to setup a local database with installed [latest utPLSQL v3](https://github.com/utPLSQL/utPLSQL) and [utPLSQL-demo-project](https://github.com/utPLSQL/utPLSQL-demo-project).
@@ -35,6 +21,11 @@ When you have local database set up you can run the complete build including int
35
21
./gradlew build
36
22
```
37
23
24
+
To build the project without local database you may disable integration tests.
25
+
```bash
26
+
./gradlew build -x intTest
27
+
```
28
+
38
29
### Skip the local database part
39
30
40
31
If you want to skip the local database part, just run ``./gradlew test``.
0 commit comments