diff --git a/.doc/JAVADOC-README.md b/.doc/JAVADOC-README.md
index 068757b..f99db01 100644
--- a/.doc/JAVADOC-README.md
+++ b/.doc/JAVADOC-README.md
@@ -1,6 +1,6 @@
-# EasyConfiguration Javadoc
+# configured Javadoc
-基于 [Github Pages](https://pages.github.com/) 搭建,请访问 [JavaDoc](https://carmjos.github.io/EasyConfiguration) 。
+基于 [Github Pages](https://pages.github.com/) 搭建,请访问 [JavaDoc](https://carmjos.github.io/configured) 。
## 如何实现?
diff --git a/.doc/README.md b/.doc/README.md
index 402baed..9a5884e 100644
--- a/.doc/README.md
+++ b/.doc/README.md
@@ -1,4 +1,4 @@
-# 欢迎使用 EasyConfiguration !
+# 欢迎使用 configured !
这个项目刚刚创建,详细的Javadoc与开发指南还在补充,请给我一点时间~
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 4efa712..44e6219 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -47,7 +47,7 @@ jobs:
id: sitemap
uses: cicirello/generate-sitemap@v1
with:
- base-url-path: https://CarmJos.github.io/EasyConfiguration
+ base-url-path: https://CarmJos.github.io/configured
path-to-root: docs
- name: "Output stats"
@@ -72,7 +72,7 @@ jobs:
run: |
cd docs
git init
- git remote add origin git@github.com:CarmJos/EasyConfiguration.git
+ git remote add origin git@github.com:CarmJos/configured.git
git checkout -b gh-pages
git add -A
git commit -m "API Document generated."
diff --git a/README.md b/README.md
index 597f1f1..51667ed 100644
--- a/README.md
+++ b/README.md
@@ -8,14 +8,14 @@
README LANGUAGES [ [**English**](README.md) | [中文](README_CN.md) ]
-# EasyConfiguration
+# configured
-[](https://github.com/CarmJos/EasyConfiguration/releases)
-[](https://www.gnu.org/licenses/lgpl-3.0.html)
-[](https://github.com/CarmJos/EasyConfiguration/actions/workflows/maven.yml)
-[](https://www.codefactor.io/repository/github/carmjos/easyconfiguration)
-
-
+[](https://github.com/CarmJos/configured/releases)
+[](https://www.gnu.org/licenses/lgpl-3.0.html)
+[](https://github.com/CarmJos/configured/actions/workflows/maven.yml)
+[](https://www.codefactor.io/repository/github/carmjos/configured)
+
+
**Easy _(to make)_ Configurations!**
@@ -35,7 +35,7 @@ format.
## Development
-For the latest JavaDoc release, [CLICK HERE](https://CarmJos.github.io/EasyConfiguration).
+For the latest JavaDoc release, [CLICK HERE](https://CarmJos.github.io/configured).
For a detailed development guide, [CLICK HERE](.doc/README.md).
@@ -95,9 +95,9 @@ public class Sample {
// 2. Initialize the configuration classes or instances.
holder.initialize(SampleConfig.class);
// 3. Enjoy using the configuration!
- System.out.println("Enabled? -> " + SampleConfig.ENABLED.resolve());
+ System.out.println("Enabled? -> " + SampleConfig.ENABLED.resolve()); // true
SampleConfig.ENABLED.set(false);
- System.out.println("And now? -> " + SampleConfig.ENABLED.resolve());
+ System.out.println("And now? -> " + SampleConfig.ENABLED.resolve()); // false
// p.s. Changes not save so enable value will still be true in the next run.
System.out.println("Your name is " + SampleConfig.INFO.NAME.resolve() + " (age=" + SampleConfig.INFO.AGE.resolve() + ")!");
@@ -148,9 +148,9 @@ info:
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -169,7 +169,7 @@ info:
cc.carm.lib
- easyconfiguration-core
+ configured-core
[LATEST RELEASE]
compile
@@ -177,7 +177,7 @@ info:
cc.carm.lib
- easyconfiguration-yaml
+ configured-yaml
[LATEST RELEASE]
compile
@@ -185,7 +185,7 @@ info:
cc.carm.lib
- easyconfiguration-gson
+ configured-gson
[LATEST RELEASE]
compile
@@ -208,7 +208,7 @@ repositories {
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
@@ -223,13 +223,13 @@ repositories {
dependencies {
// Basic implementation part, requiring custom implementation of “Provider” and “Wrapper”.
- api "cc.carm.lib:easyconfiguration-core:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-core:[LATEST RELEASE]"
// YAML file-based implementation, compatible with all Java environments.
- api "cc.carm.lib:easyconfiguration-yaml:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-yaml:[LATEST RELEASE]"
// JSON file-based implementation, compatible with all Java environments.
- api "cc.carm.lib:easyconfiguration-gson:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-gson:[LATEST RELEASE]"
}
```
@@ -240,7 +240,7 @@ dependencies {
### [**MineConfiguration**](https://github.com/CarmJos/MineConfiguration) (by @CarmJos)
-EasyConfiguration for MineCraft!
+configured for MineCraft!
Easily manage configurations on MineCraft-related server platforms.
Currently, it supports BungeeCord, Velocity, Bukkit (Spigot) servers,
@@ -254,7 +254,7 @@ Thank you for supporting open-source projects!
Many thanks to Jetbrains for kindly providing a license for us to work on this and other open-source projects.
-[](https://www.jetbrains.com/?from=https://github.com/CarmJos/EasyConfiguration)
+[](https://www.jetbrains.com/?from=https://github.com/CarmJos/configured)
Many thanks to [ArtformGames](https://github.com/ArtformGames) for their
strong support and active contribution to this project!
diff --git a/README_CN.md b/README_CN.md
index c7619ad..4bac278 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -1,21 +1,21 @@
```text
- ____ _____ ____ __ _
- / __/__ ____ __ __ / ___/__ ___ / _(_)__ ___ _________ _/ /_(_)__ ___
- / _// _ `(_- // / / /__/ _ \/ _ \/ _/ / _ `/ // / __/ _ `/ __/ / _ \/ _ \
-/___/\_,_/___/\_, / \___/\___/_//_/_//_/\_, /\_,_/_/ \_,_/\__/_/\___/_//_/
- /___/ /___/
+ _____ ____ __ _
+ / ___/__ ___ / _(_)__ ___ _________ _/ /_(_)__ ___
+/ /__/ _ \/ _ \/ _/ / _ `/ // / __/ _ `/ __/ / _ \/ _ \
+\___/\___/_//_/_//_/\_, /\_,_/_/ \_,_/\__/_/\___/_//_/
+ /___/
```
README LANGUAGES [ [English](README.md) | [**中文**](README_CN.md) ]
-# EasyConfiguration
+# configured
-[](https://github.com/CarmJos/EasyConfiguration/releases)
-[](https://www.gnu.org/licenses/lgpl-3.0.html)
-[](https://github.com/CarmJos/EasyConfiguration/actions/workflows/maven.yml)
-[](https://www.codefactor.io/repository/github/carmjos/easyconfiguration)
-
-
+[](https://github.com/CarmJos/configured/releases)
+[](https://www.gnu.org/licenses/lgpl-3.0.html)
+[](https://github.com/CarmJos/configured/actions/workflows/maven.yml)
+[](https://www.codefactor.io/repository/github/carmjos/configured)
+
+
**轻松(做)配置!**
@@ -23,7 +23,7 @@ README LANGUAGES [ [English](README.md) | [**中文**](README_CN.md) ]
## 特性 & 优势
-支持 [YAML](impl/yaml), [JSON](impl/json), [HOCON](impl/hocon) 和 [SQL](impl/sql) 等多种配置文件格式。
+支持 [YAML](providers/yaml), [JSON](providers/gson), [HOCON](providers/hocon) 和 [SQL](providers/sql) 等多种配置文件格式。
- 基于类的配置文件初始化、加载、获取与更新机制,方便快捷。
- 支持复杂配置的手动序列化、反序列化。
@@ -33,7 +33,7 @@ README LANGUAGES [ [English](README.md) | [**中文**](README_CN.md) ]
## 开发
详细开发介绍请 [点击这里](.doc/README.md) , JavaDoc(最新Release)
-请 [点击这里](https://CarmJos.github.io/EasyConfiguration) 。
+请 [点击这里](https://CarmJos.github.io/configured) 。
### 示例代码
@@ -142,9 +142,9 @@ info:
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -170,7 +170,7 @@ info:
cc.carm.lib
- easyconfiguration-core
+ configured-core
[LATEST RELEASE]
compile
@@ -178,7 +178,7 @@ info:
cc.carm.lib
- easyconfiguration-yaml
+ configured-yaml
[LATEST RELEASE]
compile
@@ -187,21 +187,21 @@ info:
cc.carm.lib
- easyconfiguration-gson
+ configured-gson
[LATEST RELEASE]
compile
cc.carm.lib
- easyconfiguration-hocon
+ configured-hocon
[LATEST RELEASE]
compile
cc.carm.lib
- easyconfiguration-sql
+ configured-sql
[LATEST RELEASE]
compile
@@ -224,7 +224,7 @@ repositories {
mavenCentral()
// 采用github依赖库,实时更新,但需要配置 (推荐)
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
// 采用我的私人依赖库,简单方便,但可能因为变故而无法使用
maven { url 'https://repo.carm.cc/repository/maven-public/' }
@@ -241,18 +241,18 @@ repositories {
dependencies {
//基础实现部分,需要自行实现“Provider”与“Wrapper”。
- api "cc.carm.lib:easyconfiguration-core:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-core:[LATEST RELEASE]"
//基于YAML文件的实现版本,可用于全部Java环境。
- api "cc.carm.lib:easyconfiguration-yaml:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-yaml:[LATEST RELEASE]"
//基于JSON文件的实现版本,可用于全部Java环境。
//需要注意的是,JSON不支持文件注释。
- api "cc.carm.lib:easyconfiguration-gson:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-gson:[LATEST RELEASE]"
- api "cc.carm.lib:easyconfiguration-hocon:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-hocon:[LATEST RELEASE]"
- api "cc.carm.lib:easyconfiguration-sql:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-sql:[LATEST RELEASE]"
}
```
@@ -263,7 +263,7 @@ dependencies {
### [**MineConfiguration**](https://github.com/CarmJos/MineConfiguration) (by @CarmJos )
-EasyConfiguration for MineCraft!
+configured for MineCraft!
开始在 MineCraft 相关服务器平台上轻松(做)配置吧!
目前支持 BungeeCord, Bukkit(Spigot) 服务端,后续将支持更多平台。
@@ -276,7 +276,7 @@ EasyConfiguration for MineCraft!
万分感谢 Jetbrains 为我们提供了从事此项目和其他开源项目的许可!
-[](https://www.jetbrains.com/?from=https://github.com/CarmJos/EasyConfiguration)
+[](https://www.jetbrains.com/?from=https://github.com/CarmJos/configured)
万分感谢来自 [ArtformGames](https://github.com/ArtformGames) 对本项目的大力支持与积极贡献!
diff --git a/core/pom.xml b/core/pom.xml
index d9c45f9..ff7164d 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
@@ -15,7 +15,7 @@
UTF-8
- easyconfiguration-core
+ configured-core
jar
diff --git a/demo/pom.xml b/demo/pom.xml
index 3af0ec0..389cbff 100644
--- a/demo/pom.xml
+++ b/demo/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
@@ -14,28 +14,28 @@
UTF-8
UTF-8
- easyconfiguration-demo
+ configured-demo
jar
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-commentable
+ configured-feature-commentable
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-versioned
+ configured-feature-versioned
${project.parent.version}
compile
diff --git a/demo/src/main/java/cc/carm/lib/configuration/demo/tests/conf/DemoConfiguration.java b/demo/src/main/java/cc/carm/lib/configuration/demo/tests/conf/DemoConfiguration.java
index 7fa1c65..e9a2427 100644
--- a/demo/src/main/java/cc/carm/lib/configuration/demo/tests/conf/DemoConfiguration.java
+++ b/demo/src/main/java/cc/carm/lib/configuration/demo/tests/conf/DemoConfiguration.java
@@ -20,7 +20,7 @@ import java.util.UUID;
"------------------------------------------------",
"此处内容将显示在配置文件的最下方",
"可用于显示版权信息等",
- "感谢您使用 https://github.com/CarmJos/EasyConfiguration !"
+ "感谢您使用 https://github.com/CarmJos/configured !"
})
public interface DemoConfiguration extends Configuration {
diff --git a/features/commentable/pom.xml b/features/commentable/pom.xml
index 3cb12d7..5781e3a 100644
--- a/features/commentable/pom.xml
+++ b/features/commentable/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -16,13 +16,13 @@
UTF-8
- easyconfiguration-feature-commentable
+ configured-feature-commentable
jar
${project.groupId}
- easyconfiguration-core
+ configured-core
${project.version}
diff --git a/features/file/pom.xml b/features/file/pom.xml
index cece665..8b71ed5 100644
--- a/features/file/pom.xml
+++ b/features/file/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -16,13 +16,13 @@
UTF-8
- easyconfiguration-feature-file
+ configured-feature-file
jar
${project.groupId}
- easyconfiguration-core
+ configured-core
${project.version}
diff --git a/features/section/pom.xml b/features/section/pom.xml
index 56eee7b..f958b29 100644
--- a/features/section/pom.xml
+++ b/features/section/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -16,13 +16,13 @@
UTF-8
- easyconfiguration-feature-section
+ configured-feature-section
jar
${project.groupId}
- easyconfiguration-core
+ configured-core
${project.version}
diff --git a/features/text/pom.xml b/features/text/pom.xml
index 6954494..50f0280 100644
--- a/features/text/pom.xml
+++ b/features/text/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -16,20 +16,20 @@
UTF-8
- easyconfiguration-feature-text
+ configured-feature-text
jar
${project.groupId}
- easyconfiguration-core
+ configured-core
${project.version}
${project.groupId}
- easyconfiguration-gson
+ configured-gson
${project.version}
test
diff --git a/features/versioned/pom.xml b/features/versioned/pom.xml
index 4ab651e..999adf2 100644
--- a/features/versioned/pom.xml
+++ b/features/versioned/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -16,13 +16,13 @@
UTF-8
- easyconfiguration-feature-versioned
+ configured-feature-versioned
jar
${project.groupId}
- easyconfiguration-core
+ configured-core
${project.version}
diff --git a/pom.xml b/pom.xml
index 5061746..51d8516 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,7 +13,7 @@
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
pom
4.0.11
@@ -33,9 +33,9 @@
demo
- EasyConfiguration
+ configured
A simple, easy-to-use and universal solution for managing configuration files.
- https://github.com/CarmJos/EasyConfiguration
+ https://github.com/CarmJos/configured
@@ -48,9 +48,9 @@
- scm:git:git@github.com:CarmJos/Easy.EasyConfiguration
- scm:git:git@github.com:CarmJos/EasyConfiguration.git
- https://github.com/CarmJos/EasyConfiguration
+ scm:git:git@github.com:CarmJos/Easy.configured
+ scm:git:git@github.com:CarmJos/configured.git
+ https://github.com/CarmJos/configured
HEAD
@@ -63,12 +63,12 @@
GitHub Issues
- https://github.com/CarmJos/EasyConfiguration/issues
+ https://github.com/CarmJos/configured/issues
GitHub Actions
- https://github.com/CarmJos/EasyConfiguration/actions/workflows/maven.yml
+ https://github.com/CarmJos/configured/actions/workflows/maven.yml
@@ -92,11 +92,11 @@
- https://github.com/CarmJos/EasyConfiguration/releases
+ https://github.com/CarmJos/configured/releases
javadoc
- EasyConfiguration JavaDoc (on GitHub Pages)
- https://CarmJos.github.io/EasyConfiguration
+ configured JavaDoc (on GitHub Pages)
+ https://CarmJos.github.io/configured
@@ -292,7 +292,7 @@
github
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
diff --git a/providers/gson/README.md b/providers/gson/README.md
index 7a7a1f2..5dee884 100644
--- a/providers/gson/README.md
+++ b/providers/gson/README.md
@@ -1,4 +1,4 @@
-# EasyConfiguration-JSON
+# configured-JSON
JSON file-based implementation, compatible with all Java environments.
@@ -22,9 +22,9 @@ JSON file-based implementation, compatible with all Java environments.
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -37,7 +37,7 @@ JSON file-based implementation, compatible with all Java environments.
cc.carm.lib
- easyconfiguration-json
+ configured-json
[LATEST RELEASE]
compile
@@ -54,14 +54,14 @@ repositories {
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
```groovy
dependencies {
- api "cc.carm.lib:easyconfiguration-json:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-json:[LATEST RELEASE]"
}
```
diff --git a/providers/gson/pom.xml b/providers/gson/pom.xml
index 22f3924..9957ad2 100644
--- a/providers/gson/pom.xml
+++ b/providers/gson/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
../../pom.xml
@@ -15,35 +15,35 @@
UTF-8
UTF-8
- easyconfiguration-gson
+ configured-gson
jar
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-file
+ configured-feature-file
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-section
+ configured-feature-section
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-demo
+ configured-demo
${project.parent.version}
test
diff --git a/providers/hocon/README.md b/providers/hocon/README.md
index 17c1e8a..b40e27e 100644
--- a/providers/hocon/README.md
+++ b/providers/hocon/README.md
@@ -1,4 +1,4 @@
-# EasyConfiguration-HOCON
+# configured-HOCON
HOCON file-based implementation, compatible with all Java environments.
@@ -20,9 +20,9 @@ HOCON file-based implementation, compatible with all Java environments.
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -35,7 +35,7 @@ HOCON file-based implementation, compatible with all Java environments.
cc.carm.lib
- easyconfiguration-hocon
+ configured-hocon
[LATEST RELEASE]
compile
@@ -52,14 +52,14 @@ repositories {
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
```groovy
dependencies {
- api "cc.carm.lib:easyconfiguration-hocon:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-hocon:[LATEST RELEASE]"
}
```
diff --git a/providers/hocon/pom.xml b/providers/hocon/pom.xml
index 01d2b57..539036f 100644
--- a/providers/hocon/pom.xml
+++ b/providers/hocon/pom.xml
@@ -5,7 +5,7 @@
4.0.0
cc.carm.lib
- easyconfiguration-parent
+ configured-parent
4.0.11
../../pom.xml
@@ -15,38 +15,38 @@
UTF-8
UTF-8
- easyconfiguration-hocon
+ configured-hocon
jar
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-commentable
+ configured-feature-commentable
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-file
+ configured-feature-file
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-section
+ configured-feature-section
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-demo
+ configured-demo
${project.parent.version}
test
diff --git a/providers/mongodb/pom.xml b/providers/mongodb/pom.xml
index 12a4079..433c4c3 100644
--- a/providers/mongodb/pom.xml
+++ b/providers/mongodb/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
../../pom.xml
@@ -18,20 +18,20 @@
5.3.1
2.24.3
- easyconfiguration-mongodb
+ configured-mongodb
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-section
+ configured-feature-section
${project.parent.version}
compile
@@ -65,14 +65,14 @@
${project.parent.groupId}
- easyconfiguration-demo
+ configured-demo
${project.parent.version}
test
${project.parent.groupId}
- easyconfiguration-gson
+ configured-gson
${project.parent.version}
test
diff --git a/providers/sql/README.md b/providers/sql/README.md
index d4dd566..e741754 100644
--- a/providers/sql/README.md
+++ b/providers/sql/README.md
@@ -1,4 +1,4 @@
-# EasyConfiguration-SQL
+# configured-SQL
SQL database implementation, support for MySQL or MariaDB.
@@ -39,9 +39,9 @@ CREATE TABLE IF NOT EXISTS conf
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS conf
cc.carm.lib
- easyconfiguration-sql
+ configured-sql
[LATEST RELEASE]
compile
@@ -71,13 +71,13 @@ repositories {
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
```groovy
dependencies {
- api "cc.carm.lib:easyconfiguration-sql:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-sql:[LATEST RELEASE]"
}
```
\ No newline at end of file
diff --git a/providers/sql/pom.xml b/providers/sql/pom.xml
index 99f4d97..fc5a642 100644
--- a/providers/sql/pom.xml
+++ b/providers/sql/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
../../pom.xml
@@ -18,33 +18,33 @@
8.0.33
2.24.3
- easyconfiguration-sql
+ configured-sql
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-commentable
+ configured-feature-commentable
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-section
+ configured-feature-section
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-versioned
+ configured-feature-versioned
${project.parent.version}
compile
@@ -70,7 +70,7 @@
${project.parent.groupId}
- easyconfiguration-demo
+ configured-demo
${project.parent.version}
test
@@ -98,7 +98,7 @@
${project.parent.groupId}
- easyconfiguration-gson
+ configured-gson
${project.parent.version}
test
diff --git a/providers/yaml/README.md b/providers/yaml/README.md
index 3d3d8c0..7e8afa0 100644
--- a/providers/yaml/README.md
+++ b/providers/yaml/README.md
@@ -1,4 +1,4 @@
-# EasyConfiguration-YAML
+# configured-YAML
YAML file-based implementation, compatible with all Java environments.
@@ -20,9 +20,9 @@ YAML file-based implementation, compatible with all Java environments.
- EasyConfiguration
+ configured
GitHub Packages
- https://maven.pkg.github.com/CarmJos/EasyConfiguration
+ https://maven.pkg.github.com/CarmJos/configured
@@ -35,7 +35,7 @@ YAML file-based implementation, compatible with all Java environments.
cc.carm.lib
- easyconfiguration-yaml
+ configured-yaml
[LATEST RELEASE]
compile
@@ -52,13 +52,13 @@ repositories {
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
- maven { url 'https://maven.pkg.github.com/CarmJos/EasyConfiguration' }
+ maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
```groovy
dependencies {
- api "cc.carm.lib:easyconfiguration-yaml:[LATEST RELEASE]"
+ api "cc.carm.lib:configured-yaml:[LATEST RELEASE]"
}
```
\ No newline at end of file
diff --git a/providers/yaml/pom.xml b/providers/yaml/pom.xml
index 1be53a6..27da673 100644
--- a/providers/yaml/pom.xml
+++ b/providers/yaml/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- easyconfiguration-parent
+ configured-parent
cc.carm.lib
4.0.11
../../pom.xml
@@ -17,35 +17,35 @@
1.2.1
- easyconfiguration-yaml
+ configured-yaml
jar
${project.parent.groupId}
- easyconfiguration-core
+ configured-core
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-file
+ configured-feature-file
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-section
+ configured-feature-section
${project.parent.version}
compile
${project.parent.groupId}
- easyconfiguration-feature-commentable
+ configured-feature-commentable
${project.parent.version}
compile
@@ -66,7 +66,7 @@
${project.parent.groupId}
- easyconfiguration-demo
+ configured-demo
${project.parent.version}
test