diff --git a/.gitignore b/.gitignore index 209f86f..58e31d2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ # Maven target/ +build +.gradle pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup @@ -18,3 +20,4 @@ buildNumber.properties #Exclude CoverageHTMLReporter resources as they are managed by maven src/main/resources/CoverageHTMLReporter/ +/gradle.properties diff --git a/.travis.yml b/.travis.yml index 17f24f1..bfb554f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,6 @@ env: - DOCKER_CFG=$HOME/.docker - DOCKER_REPO="utplsqlv3/oracledb" - CACHE_DIR=$HOME/.cache - - MAVEN_HOME=/usr/local/maven - - MAVEN_CFG=$HOME/.m2 - DB_URL="127.0.0.1:1521:XE" - DB_USER=app - DB_PASS=app @@ -33,30 +31,36 @@ env: - UTPLSQL_VERSION="develop" UTPLSQL_FILE="utPLSQL" +before_cache: + - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock + - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: + - $HOME/.gradle/caches/ + - $HOME/.gradle/wrapper/ - $DOCKER_CFG - $CACHE_DIR - - $MAVEN_CFG install: - - bash .travis/maven_cfg.sh - bash .travis/start_db.sh - bash .travis/install_utplsql.sh - bash .travis/install_demo_project.sh - + before_script: - - cp .travis/settings.xml $MAVEN_CFG/settings.xml + - echo JAVA_HOME = ${JAVA_HOME} + - echo PATH = ${PATH} + - ls ${JAVA_HOME} + - java -version + - echo $JAVA_OPTS + - echo $GRADLE_OPTS + - echo JAVA_HOME = ${GRADLE_HOME} script: - - mvn verify -B - -before_deploy: - - if [ ! -z "$TRAVIS_TAG" ]; then VERSION=$(tr -d "/v/" <<<$TRAVIS_TAG); mvn org.codehaus.mojo:versions-maven-plugin:2.1:set -DnewVersion=${VERSION}; fi + - ./gradlew check deploy: - provider: script - script: mvn clean deploy -DskipTests=true -B -U -DtravisBuildNumber=$TRAVIS_BUILD_NUMBER + script: ./gradlew uploadArchives skip_cleanup: true on: repository: utPLSQL/utPLSQL-java-api @@ -65,7 +69,7 @@ deploy: condition: "${TRAVIS_JOB_NUMBER} =~ \\.1$" - provider: script - script: mvn clean deploy -DskipTests=true -B -U -DtravisBuildNumber=$TRAVIS_BUILD_NUMBER + script: ./gradlew uploadArchives skip_cleanup: true on: repository: utPLSQL/utPLSQL-java-api diff --git a/.travis/settings.tmpl.xml b/.travis/settings.tmpl.xml deleted file mode 100644 index 89204b6..0000000 --- a/.travis/settings.tmpl.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - maven.oracle.com - ###USERNAME### - ###PASSWORD### - - - ANY - ANY - OAM 11g - - - - - - http.protocol.allow-circular-redirects - %b,true - - - - - - - - - diff --git a/.travis/settings.xml b/.travis/settings.xml deleted file mode 100644 index 8c1bb7f..0000000 --- a/.travis/settings.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - maven.oracle.com - ${env.ORACLE_OTN_USER} - ${env.ORACLE_OTN_PASSWORD} - - - ANY - ANY - OAM 11g - - - - - - http.protocol.allow-circular-redirects - %b,true - - - - - - - - packagecloud-utPLSQL - ${env.PACKAGECLOUD_TOKEN} - - - - diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64ed197..7164994 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,50 +10,32 @@ https://maven.apache.org/install.html ### Oracle Maven Repository 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: +Create file `gradle.properties` in the root directory of the repository and place OTN credentials there: +```properties +ORACLE_OTN_USER=user@email.com +ORACLE_OTN_PASSWORD=password +``` -http://docs.oracle.com/middleware/1213/core/MAVEN/config_maven_repo.htm#MAVEN9010 +After configuring your access to Oracle's Maven repository, you will be able to successfully build this API by disabling integration tests. -*Sections 6.1 and 6.5 are the more important ones, and the only ones you need if you're using the latest Maven version.* +```bash +./gradlew build -x intTest +``` ### Local database with utPLSQL and utPLSQL-demo-project 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). The demo-project will serve as your test user. See .travis.yml to see an example on how it can be installed. +By default tests are executed against `app/app` user of `localhost:1521/XE database`. -### Maven settings for utPLSQL-local profile - -utPLSQL-java-api comes with a preconfigured profile "utPLSQL-local". This profile uses properties to set the correct -environment variables for DB_URL, DB_USER and DB_PASS which is needed to run the integration tests. -You can set these properties by adding the following to your Maven settings.xml: - -```xml - - - - - utPLSQL-local - - localhost:1521/XE - app - app - - - - - - utPLSQL-local - - -``` - -After configuring your access to Oracle's Maven repository, you will be able to successfully build this API. +If you want to run tests against another database you may set `DB_URL`, `DB_USER`, `DB_PASS` environment variables. +When you have local database set up you can run the complete build including integration tests by executing ```bash -cd utPLSQL-java-api -mvn clean package install +./gradlew build ``` ### Skip the local database part -If you want to skip the local database part, just run ``mvn clean package install -DskipTests``. -You will still be able to run ``mvn test`` because integration tests are run in the ``verify``-phase. +If you want to skip the local database part, just run ``./gradlew test``. +You will be able to run ``./gradle test`` because integration tests are executed in the separate ``intTest`` task as part of overall ``check``. diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..3fd14d7 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,166 @@ +import de.undercouch.gradle.tasks.download.Download +import org.gradle.api.tasks.testing.logging.TestExceptionFormat + +val deployerJars by configurations.creating + +group = "org.utplsql" +val mavenArtifactId = "java-api" +version = "3.1.3-SNAPSHOT" + +val coverageResourcesVersion = "1.0.1" +val ojdbcVersion = "12.2.0.1" + +plugins { + `java-library` + `maven-publish` + maven + id("de.undercouch.download") version "3.4.3" +} + +java { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 +} + +// In this section you declare where to find the dependencies of your project +repositories { + maven { + url = uri("https://www.oracle.com/content/secure/maven/content") + credentials { + // you may set this properties using gradle.properties file in the root of the project or in your GRADLE_HOME + username = if (project.hasProperty("ORACLE_OTN_USER")) project.property("ORACLE_OTN_USER") as String? else System.getenv("ORACLE_OTN_USER") + password = if (project.hasProperty("ORACLE_OTN_PASSWORD")) project.property("ORACLE_OTN_PASSWORD") as String? else System.getenv("ORACLE_OTN_PASSWORD") + } + } + mavenCentral() +} + +dependencies { + // This dependency is exported to consumers, that is to say found on their compile classpath. + api("com.google.code.findbugs:jsr305:3.0.2") + + // This dependency is used internally, and not exposed to consumers on their own compile classpath. + implementation("org.slf4j:slf4j-api:1.7.25") + implementation("com.oracle.jdbc:ojdbc8:$ojdbcVersion") { + exclude(group = "com.oracle.jdbc") + } + implementation("com.oracle.jdbc:orai18n:$ojdbcVersion") + + // Use Jupiter test framework + testImplementation("org.junit.jupiter:junit-jupiter:5.4.0") + testImplementation("org.hamcrest:hamcrest:2.1") + deployerJars("io.packagecloud.maven.wagon:maven-packagecloud-wagon:0.0.6") +} + +tasks { + test { + useJUnitPlatform() + exclude("**/*IT.class") + testLogging { + events("passed", "skipped", "failed") + exceptionFormat = TestExceptionFormat.FULL + showStackTraces = true + } + } + + val intTest = create("intTest") { + dependsOn(test) + doFirst { + environment("DB_URL", System.getenv("DB_URL") ?: "localhost:1521/XE") + environment("DB_USER", System.getenv("DB_USER") ?: "app") + environment("DB_PASS", System.getenv("DB_PASS") ?: "app") + } + useJUnitPlatform() + include("**/*IT.class") + testLogging { + events("passed", "skipped", "failed") + exceptionFormat = TestExceptionFormat.FULL + showStackTraces = true + showStandardStreams = true + } + } + + // add integration tests to the whole check + named("check") { + dependsOn(intTest) + } + + val coverageResourcesDirectory = "${project.buildDir}/resources/main/CoverageHTMLReporter" + val coverageResourcesZip = "${project.buildDir}/utPLSQL-coverage-html-$coverageResourcesVersion.zip" + + // download Coverage Resources from web + val downloadResources = create("downloadCoverageResources") { + src("https://codeload.github.com/utPLSQL/utPLSQL-coverage-html/zip/$coverageResourcesVersion") + dest(File(coverageResourcesZip)) + overwrite(true) + } + + withType { + dependsOn(downloadResources) + + val properties = project.properties.toMutableMap() + properties.putIfAbsent("travisBuildNumber", System.getenv("TRAVIS_BUILD_NUMBER") ?: "local") + expand(properties) + + doLast { + copy { + // extract assets folder only from downloaded archive + // https://github.com/gradle/gradle/pull/8494 + from(zipTree(coverageResourcesZip)) { + include("*/assets/**") + eachFile { + relativePath = RelativePath(true, *relativePath.segments.drop(2).toTypedArray()) // <2> + } + includeEmptyDirs = false + } + into(coverageResourcesDirectory) + } + } + } + + withType { + dependsOn("generatePomFileForMavenPublication") + manifest { + attributes( + "Built-By" to System.getProperty("user.name"), + "Created-By" to "Gradle ${gradle.gradleVersion}", + "Build-Jdk" to "${System.getProperty("os.name")} ${System.getProperty("os.arch")} ${System.getProperty("os.version")}" + ) + } + into("META-INF/maven/${project.group}/$mavenArtifactId") { + from("$buildDir/publications/maven") + rename(".*", "pom.xml") + } + + } + + named("uploadArchives") { + repositories.withGroovyBuilder { + "mavenDeployer" { + setProperty("configuration", deployerJars) + "repository"("url" to "packagecloud+https://packagecloud.io/utPLSQL/utPLSQL-java-api") { + "authentication"("password" to System.getenv("PACKAGECLOUD_TOKEN")) + } + } + } + } +} + +publishing { + publications { + create("maven") { + artifactId = mavenArtifactId + pom { + name.set("utPLSQL-java-api") + url.set("https://github.com/utPLSQL/utPLSQL-java-api") + licenses { + license { + name.set("The Apache License, Version 2.0") + url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") + } + } + } + from(components["java"]) + } + } +} \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100755 index 0000000..f6b961f Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..1b2b07c --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..af6708f --- /dev/null +++ b/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..6d57edc --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/pom.xml b/pom.xml deleted file mode 100644 index d9338dd..0000000 --- a/pom.xml +++ /dev/null @@ -1,254 +0,0 @@ - - 4.0.0 - - org.utplsql - java-api - 3.1.3-SNAPSHOT - jar - - utPLSQL-java-api - https://github.com/utPLSQL/utPLSQL-java-api - - - UTF-8 - 1.8 - 1.8 - 1.0.3 - 5.0.3 - ${basedir}/src/main/resources/CoverageHTMLReporter - 1.0.1 - utPLSQL-coverage-html-${coverage.resources.version} - ${coverage.resources.zip.directory}.zip - local - - - - - com.oracle.jdbc - ojdbc8 - 12.2.0.1 - compile - - - com.oracle.jdbc - orai18n - 12.2.0.1 - compile - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - org.slf4j - slf4j-api - 1.7.25 - - - - - org.junit.jupiter - junit-jupiter-api - ${junit.jupiter.version} - test - - - org.junit.jupiter - junit-jupiter-engine - ${junit.jupiter.version} - test - - - - ch.qos.logback - logback-classic - 1.2.3 - test - - - - - - maven.oracle.com - - true - - - false - - https://maven.oracle.com - default - - - - - - maven.oracle.com - https://maven.oracle.com - - - - - - - io.packagecloud.maven.wagon - maven-packagecloud-wagon - 0.0.6 - - - - - com.googlecode.maven-download-plugin - download-maven-plugin - 1.3.0 - - - - process-resources - - wget - - - https://codeload.github.com/utPLSQL/utPLSQL-coverage-html/zip/${coverage.resources.version} - ${coverage.resources.zip} - - ${coverage.resources.directory} - - - - - - maven-antrun-plugin - 1.7 - - - process-resources - - run - - - - - - - - - - - - - - - - - - - - - - - maven-resources-plugin - 2.6 - - - process-resources - - resources - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - **/*IT.java - - false - - - - org.junit.platform - junit-platform-surefire-provider - ${junit.platform.version} - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.19.1 - - - - integration-test - verify - - - - - - org.junit.platform - junit-platform-surefire-provider - ${junit.platform.version} - - - - - - - src/main/resources - true - - **/utplsql-api.version - - - - src/main/resources - false - - **/utplsql-api.version - - - - - - - - utPLSQL-local - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - ${dbUrl} - ${dbUser} - ${dbPass} - - - - - - - - - - - - packagecloud-utPLSQL - packagecloud+https://packagecloud.io/utPLSQL/utPLSQL-java-api - - - packagecloud-utPLSQL - packagecloud+https://packagecloud.io/utPLSQL/utPLSQL-java-api - - - - diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..2fd8241 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,2 @@ + +rootProject.name = "utPLSQL-java-api"