From 21e48c301d612e0b7d0b7bcff2fbfaf7ab730a9e Mon Sep 17 00:00:00 2001 From: Mads Hansen Date: Fri, 24 Jan 2025 21:50:54 -0500 Subject: [PATCH] bump XCC and ml-gradle versions add copyright to new OneWaySSLConfig classes --- build.gradle | 4 ++-- .../developer/corb/OneWaySSLConfig.java | 18 ++++++++++++++++++ .../developer/corb/OneWaySSLConfigTest.java | 18 ++++++++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index dd9cfeee..40ccf8fb 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent plugins { id 'com.github.johnrengelman.shadow' version '7.1.2' id 'com.github.kt3k.coveralls' version '2.12.2' - id 'com.marklogic.ml-gradle' version '4.7.0' + id 'com.marklogic.ml-gradle' version '4.8.0' id 'io.github.ddimtirov.codacy' version '0.1.0' id 'org.sonarqube' version '4.0.0.2929' id 'eclipse' @@ -84,7 +84,7 @@ configurations { } dependencies { - api 'com.marklogic:marklogic-xcc:11.2.0' + api 'com.marklogic:marklogic-xcc:11.3.1' // JavaScript libraries are bundled in a fat jar for the UI implementation "org.webjars:angularjs:$angularVersion" implementation 'org.jetbrains:annotations:24.1.0' diff --git a/src/main/java/com/marklogic/developer/corb/OneWaySSLConfig.java b/src/main/java/com/marklogic/developer/corb/OneWaySSLConfig.java index e0e643fd..5f9cc379 100644 --- a/src/main/java/com/marklogic/developer/corb/OneWaySSLConfig.java +++ b/src/main/java/com/marklogic/developer/corb/OneWaySSLConfig.java @@ -1,3 +1,21 @@ +/* + * * Copyright (c) 2004-2025 MarkLogic Corporation + * * + * * Licensed under the Apache License, Version 2.0 (the "License"); + * * you may not use this file except in compliance with the License. + * * You may obtain a copy of the License at + * * + * * http://www.apache.org/licenses/LICENSE-2.0 + * * + * * Unless required by applicable law or agreed to in writing, software + * * distributed under the License is distributed on an "AS IS" BASIS, + * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * * See the License for the specific language governing permissions and + * * limitations under the License. + * * + * * The use of the Apache License does not indicate that this project is + * * affiliated with the Apache Software Foundation. + */ package com.marklogic.developer.corb; import javax.net.ssl.SSLContext; diff --git a/src/test/java/com/marklogic/developer/corb/OneWaySSLConfigTest.java b/src/test/java/com/marklogic/developer/corb/OneWaySSLConfigTest.java index ccb1aa18..7ddff098 100644 --- a/src/test/java/com/marklogic/developer/corb/OneWaySSLConfigTest.java +++ b/src/test/java/com/marklogic/developer/corb/OneWaySSLConfigTest.java @@ -1,3 +1,21 @@ +/* + * * Copyright (c) 2004-2025 MarkLogic Corporation + * * + * * Licensed under the Apache License, Version 2.0 (the "License"); + * * you may not use this file except in compliance with the License. + * * You may obtain a copy of the License at + * * + * * http://www.apache.org/licenses/LICENSE-2.0 + * * + * * Unless required by applicable law or agreed to in writing, software + * * distributed under the License is distributed on an "AS IS" BASIS, + * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * * See the License for the specific language governing permissions and + * * limitations under the License. + * * + * * The use of the Apache License does not indicate that this project is + * * affiliated with the Apache Software Foundation. + */ package com.marklogic.developer.corb; import com.marklogic.developer.corb.util.FileUtils;