From db5201e6c4321fa59801a4baf2f675b97f442185 Mon Sep 17 00:00:00 2001 From: Robinson Date: Thu, 7 Sep 2023 18:11:18 +0200 Subject: [PATCH] Added package-info.java --- build.gradle.kts | 8 +++++--- src/dorkbox/storage/package-info.java | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 src/dorkbox/storage/package-info.java diff --git a/build.gradle.kts b/build.gradle.kts index c837c1e..e2e39b2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,12 +30,14 @@ plugins { kotlin("jvm") version "1.8.0" } - +// TODO: - have an HTTP put/fetch based storage. (where storage can run as the client and server). +// - allow bridging between storage types so http server can store as XYZ, easily +// - make this also integrate with the cache? object Extras { // set for the project const val description = "Storage system for Java" const val group = "com.dorkbox" - const val version = "1.9" + const val version = "1.10" // set as project.ext const val name = "Storage" @@ -83,7 +85,7 @@ dependencies { api("com.dorkbox:ByteUtilities:2.0") api("com.dorkbox:Json:1.7") api("com.dorkbox:MinLog:2.5") - api("com.dorkbox:ObjectPool:4.3") + api("com.dorkbox:ObjectPool:4.4") api("com.dorkbox:Serializers:2.9") api("com.dorkbox:Updates:1.1") diff --git a/src/dorkbox/storage/package-info.java b/src/dorkbox/storage/package-info.java new file mode 100644 index 0000000..eccaaf8 --- /dev/null +++ b/src/dorkbox/storage/package-info.java @@ -0,0 +1,17 @@ +/* + * Copyright 2023 dorkbox, llc + * + * 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. + */ + +package dorkbox.storage;