Added package-info.java

master
Robinson 2023-09-07 18:11:18 +02:00
parent 78b6728d28
commit db5201e6c4
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 22 additions and 3 deletions

View File

@ -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")

View File

@ -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;