-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
720 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# commons-lang 0.1.0 (2019-01-12) | ||
|
||
### Features | ||
|
||
* `FileCommons` utility class for I/O and filesystem handling | ||
* `Composite` utility class for related design pattern | ||
* `getEnclosingClasses()` method to `ReflectiveCommons` | ||
* `singleQuote()`, `doubleQuote()` and `quote()` methods to `StringCommons` | ||
* **tests:** Switch to JaCoCo for test reporting | ||
* **chore:** Add `CHANGELOG` and `CODEOWNERS` files | ||
* **build:** Add test coverage constraints | ||
* **build:** Add `docs` and `ossrh` Maven profiles | ||
|
||
# commons-lang 0.0.1 (2018-08-18) | ||
|
||
### Features | ||
|
||
* `StringCommons` utility class for manipulating strings | ||
* `ReflectiveCommons` utility class for reflection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# commons-lang 0.1.0 | ||
|
||
### Features | ||
|
||
* `FileCommons` utility class for I/O and filesystem handling | ||
* `Composite` utility class for related design pattern | ||
* `getEnclosingClasses()` method to `ReflectiveCommons` | ||
* `singleQuote()`, `doubleQuote()` and `quote()` methods to `StringCommons` | ||
* **tests:** Switch to JaCoCo for test reporting | ||
* **chore:** Add `CHANGELOG` and `CODEOWNERS` files | ||
* **build:** Add test coverage constraints | ||
* **build:** Add `docs` and `ossrh` Maven profiles |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @daniloarcidiacono |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 Danilo Arcidiacono | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[![Maven Central](https://img.shields.io/maven-central/v/io.github.daniloarcidiacono/commons-lang.svg?label=Maven%20Central)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.github.daniloarcidiacono%22%20a%3A%22commons-lang%22) | ||
[![codecov](https://codecov.io/gh/daniloarcidiacono/commons-lang/branch/dev/graph/badge.svg)](https://codecov.io/gh/daniloarcidiacono/commons-lang) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) | ||
|
||
# Java language utilities | ||
|
Oops, something went wrong.