From 1b3f9a70d617b9744f094027363c35e8bc8df9f1 Mon Sep 17 00:00:00 2001 From: Gmugra Date: Sun, 23 May 2021 11:59:29 +0200 Subject: [PATCH] rename artifacts --- README.md | 14 +++++++------- compiler/pom.xml | 4 ++-- core/pom.xml | 2 +- jasypt/README.md | 6 +++--- jasypt/pom.xml | 6 +++--- pom.xml | 2 +- tests/pom.xml | 6 +++--- toml/README.md | 6 +++--- toml/pom.xml | 6 +++--- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index eab1df21..cf86306e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ The Java library with the goal of minimizing the code required to handle application configuration. -[![build](https://github.com/Gmugra/net.cactusthorn.config/actions/workflows/maven.yml/badge.svg)](https://github.com/Gmugra/net.cactusthorn.config/actions) [![Coverage Status](https://coveralls.io/repos/github/Gmugra/net.cactusthorn.config/badge.svg?branch=main)](https://coveralls.io/github/Gmugra/net.cactusthorn.config?branch=main) [![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/Gmugra/net.cactusthorn.config.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Gmugra/net.cactusthorn.config/context:java) [![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/net.cactusthorn.config/core/0.30)](https://search.maven.org/search?q=g:net.cactusthorn.config) [![GitHub](https://img.shields.io/github/license/Gmugra/net.cactusthorn.config)](https://github.com/Gmugra/net.cactusthorn.config/blob/main/LICENSE) [![Build by Maven](http://maven.apache.org/images/logos/maven-feather.png)](http://maven.apache.org) +[![build](https://github.com/Gmugra/net.cactusthorn.config/actions/workflows/maven.yml/badge.svg)](https://github.com/Gmugra/net.cactusthorn.config/actions) [![Coverage Status](https://coveralls.io/repos/github/Gmugra/net.cactusthorn.config/badge.svg?branch=main)](https://coveralls.io/github/Gmugra/net.cactusthorn.config?branch=main) [![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/Gmugra/net.cactusthorn.config.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Gmugra/net.cactusthorn.config/context:java) [![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/net.cactusthorn.config/core/0.31)](https://search.maven.org/search?q=g:net.cactusthorn.config) [![GitHub](https://img.shields.io/github/license/Gmugra/net.cactusthorn.config)](https://github.com/Gmugra/net.cactusthorn.config/blob/main/LICENSE) [![Build by Maven](http://maven.apache.org/images/logos/maven-feather.png)](http://maven.apache.org) ## Motivation The inspiring idea for the project comes from [OWNER](https://github.com/lviggiano/owner). *OWNER* is a nice Java library for the same purpose, but it's not factually maintened anymore, and it's not really support "new" langauge features from Java 8+. @@ -35,8 +35,8 @@ In order to use the library in a project, it's need to add the dependency to the ```xml net.cactusthorn.config - core - 0.30 + config-core + 0.31 ``` It's also need to include the compiler used to convert annotated "source"-interfaces into the code: @@ -49,8 +49,8 @@ It's also need to include the compiler used to convert annotated "source"-interf net.cactusthorn.config - compiler - 0.30 + config-compiler + 0.31 @@ -60,8 +60,8 @@ FYI: With this configuration, Maven will output the generated code into `target/ Same with Gradle: ``` -compile 'net.cactusthorn.config:core:0.30' -annotationProcessor 'net.cactusthorn.config:compiler:0.30' +compile 'net.cactusthorn.config:config-core:0.31' +annotationProcessor 'net.cactusthorn.config:config-compiler:0.31' ``` ### Basic usage diff --git a/compiler/pom.xml b/compiler/pom.xml index 5c08546c..16d3d999 100644 --- a/compiler/pom.xml +++ b/compiler/pom.xml @@ -10,7 +10,7 @@ ${revision}${changelist} - compiler + config-compiler jar Config :: Compiler @@ -44,7 +44,7 @@ net.cactusthorn.config - core + config-core ${project.version} diff --git a/core/pom.xml b/core/pom.xml index 1d7b24d8..a716c25b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -10,7 +10,7 @@ ${revision}${changelist} - core + config-core jar Config :: Core diff --git a/jasypt/README.md b/jasypt/README.md index 02dfda61..45a92a60 100644 --- a/jasypt/README.md +++ b/jasypt/README.md @@ -32,13 +32,13 @@ In order to use the library in a project, it's need to add the dependency to the ```xml net.cactusthorn.config - jasypt - 0.30 + config-jasypt + 0.31 ``` or with Gradle: ``` -compile 'net.cactusthorn.config:jasypt:0.30' +compile 'net.cactusthorn.config:config-jasypt:0.31' ``` ## LICENSE diff --git a/jasypt/pom.xml b/jasypt/pom.xml index 904bf63b..b0efeee7 100644 --- a/jasypt/pom.xml +++ b/jasypt/pom.xml @@ -10,7 +10,7 @@ ${revision}${changelist} - jasypt + config-jasypt jar Config :: Jasypt @@ -45,7 +45,7 @@ net.cactusthorn.config - core + config-core ${project.version} @@ -66,7 +66,7 @@ net.cactusthorn.config - compiler + config-compiler ${project.version} diff --git a/pom.xml b/pom.xml index 99100cfe..03e954f0 100644 --- a/pom.xml +++ b/pom.xml @@ -36,7 +36,7 @@ - 0.40 + 0.31 -SNAPSHOT yyyy-MM-dd'T'HH:mm:ss'Z' diff --git a/tests/pom.xml b/tests/pom.xml index 1bb6a3c1..292df9c1 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -45,13 +45,13 @@ net.cactusthorn.config - core + config-core ${project.version} net.cactusthorn.config - toml + config-toml ${project.version} @@ -67,7 +67,7 @@ net.cactusthorn.config - compiler + config-compiler ${project.version} diff --git a/toml/README.md b/toml/README.md index a9724866..eca30694 100644 --- a/toml/README.md +++ b/toml/README.md @@ -89,13 +89,13 @@ In order to use the library in a project, it's need to add the dependency to the ```xml net.cactusthorn.config - toml - 0.30 + config-toml + 0.31 ``` or with Gradle: ``` -compile 'net.cactusthorn.config:toml:0.30' +compile 'net.cactusthorn.config:config-toml:0.31' ``` ## LICENSE diff --git a/toml/pom.xml b/toml/pom.xml index 271ae0be..d3939eba 100644 --- a/toml/pom.xml +++ b/toml/pom.xml @@ -10,7 +10,7 @@ ${revision}${changelist} - toml + config-toml jar Config :: TOML @@ -45,7 +45,7 @@ net.cactusthorn.config - core + config-core ${project.version} @@ -65,7 +65,7 @@ net.cactusthorn.config - compiler + config-compiler ${project.version}