https://img.shields.io/nexus/libs/es.revengenetwork/storage-api?server=https%3A%2F%2Frepo.revengenetwork.es%2F&style=plastic

Kotlin DSL

Do not forget to replace VERSION with the latest version.

repositories {
	maven("<https://repo.revengenetwork.es/repository/libs/>")
}

dependencies {
	implementation("es.revengenetwork:storage-api:VERSION") // Add this if you only need storage base.
	implementation("es.revengenetwork:storage-api-codec:VERSION") // Add this if you need storage base and model serializers/deserializers.
	implementation("es.revengenetwork:storage-gson-dist:VERSION") // Add this if you need JSON repositories.
	implementation("es.revengenetwork:storage-redis-dist:VERSION") // Add this if you need redis repositories. 
	implementation("es.revengenetwork:storage-mongo-legacy-dist:VERSION") // Add this if you need mongo repositories.
	implementation("es.revengenetwork:storage-caffeine-dist:VERSION") // Add this if you need caffeine repositories.
}

Groovy DSL

Do not forget to replace VERSION with the latest version.

repositories {
	maven {
		url "<https://repo.revengenetwork.es/repository/libs/>"
	}
}

dependencies {
	implementation 'es.revengenetwork:storage-api:VERSION' // Add this if you only need storage base.
	implementation 'es.revengenetwork:storage-api-codec:VERSION' // Add this if you need storage base and model serializers/deserializers.
	implementation 'es.revengenetwork:storage-gson-dist:VERSION' // Add this if you need JSON repositories.
	implementation 'es.revengenetwork:storage-redis-dist:VERSION' // Add this if you need redis repositories. 
	implementation 'es.revengenetwork:storage-mongo-legacy-dist:VERSION' // Add this if you need mongo repositories.
	implementation 'es.revengenetwork:storage-caffeine-dist:VERSION' // Add this if you need caffeine repositories.	
}