Skip to content

Commit

Permalink
Merge pull request #140 from Gmugra/rename_artifacts
Browse files Browse the repository at this point in the history
rename artifacts
  • Loading branch information
Gmugra authored May 23, 2021
2 parents 446a50b + 1b3f9a7 commit 28f4a5b
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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+.
Expand Down Expand Up @@ -35,8 +35,8 @@ In order to use the library in a project, it's need to add the dependency to the
```xml
<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>core</artifactId>
<version>0.30</version>
<artifactId>config-core</artifactId>
<version>0.31</version>
</dependency>
```
It's also need to include the compiler used to convert annotated "source"-interfaces into the code:
Expand All @@ -49,8 +49,8 @@ It's also need to include the compiler used to convert annotated "source"-interf
<annotationProcessorPaths>
<path>
<groupId>net.cactusthorn.config</groupId>
<artifactId>compiler</artifactId>
<version>0.30</version>
<artifactId>config-compiler</artifactId>
<version>0.31</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>${revision}${changelist}</version>
</parent>

<artifactId>compiler</artifactId>
<artifactId>config-compiler</artifactId>
<packaging>jar</packaging>

<name>Config :: Compiler</name>
Expand Down Expand Up @@ -44,7 +44,7 @@

<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>core</artifactId>
<artifactId>config-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>${revision}${changelist}</version>
</parent>

<artifactId>core</artifactId>
<artifactId>config-core</artifactId>
<packaging>jar</packaging>

<name>Config :: Core</name>
Expand Down
6 changes: 3 additions & 3 deletions jasypt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ In order to use the library in a project, it's need to add the dependency to the
```xml
<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>jasypt</artifactId>
<version>0.30</version>
<artifactId>config-jasypt</artifactId>
<version>0.31</version>
</dependency>
```
or with Gradle:
```
compile 'net.cactusthorn.config:jasypt:0.30'
compile 'net.cactusthorn.config:config-jasypt:0.31'
```

## LICENSE
Expand Down
6 changes: 3 additions & 3 deletions jasypt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>${revision}${changelist}</version>
</parent>

<artifactId>jasypt</artifactId>
<artifactId>config-jasypt</artifactId>
<packaging>jar</packaging>

<name>Config :: Jasypt</name>
Expand Down Expand Up @@ -45,7 +45,7 @@

<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>core</artifactId>
<artifactId>config-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -66,7 +66,7 @@
<annotationProcessorPaths>
<path>
<groupId>net.cactusthorn.config</groupId>
<artifactId>compiler</artifactId>
<artifactId>config-compiler</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<properties>

<revision>0.40</revision>
<revision>0.31</revision>
<changelist>-SNAPSHOT</changelist>

<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
Expand Down
6 changes: 3 additions & 3 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@

<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>core</artifactId>
<artifactId>config-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>toml</artifactId>
<artifactId>config-toml</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -67,7 +67,7 @@
<annotationProcessorPaths>
<path>
<groupId>net.cactusthorn.config</groupId>
<artifactId>compiler</artifactId>
<artifactId>config-compiler</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
Expand Down
6 changes: 3 additions & 3 deletions toml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ In order to use the library in a project, it's need to add the dependency to the
```xml
<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>toml</artifactId>
<version>0.30</version>
<artifactId>config-toml</artifactId>
<version>0.31</version>
</dependency>
```
or with Gradle:
```
compile 'net.cactusthorn.config:toml:0.30'
compile 'net.cactusthorn.config:config-toml:0.31'
```

## LICENSE
Expand Down
6 changes: 3 additions & 3 deletions toml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>${revision}${changelist}</version>
</parent>

<artifactId>toml</artifactId>
<artifactId>config-toml</artifactId>
<packaging>jar</packaging>

<name>Config :: TOML</name>
Expand Down Expand Up @@ -45,7 +45,7 @@

<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>core</artifactId>
<artifactId>config-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -65,7 +65,7 @@
<annotationProcessorPaths>
<path>
<groupId>net.cactusthorn.config</groupId>
<artifactId>compiler</artifactId>
<artifactId>config-compiler</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
Expand Down

0 comments on commit 28f4a5b

Please sign in to comment.