https://github.com/mageddo-projects/commons-lang
A set of useful classes, evicting you repeating yourself, avoiding fatigue
https://github.com/mageddo-projects/commons-lang
Last synced: 11 days ago
JSON representation
A set of useful classes, evicting you repeating yourself, avoiding fatigue
- Host: GitHub
- URL: https://github.com/mageddo-projects/commons-lang
- Owner: mageddo-projects
- License: apache-2.0
- Created: 2023-02-03T00:11:44.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T17:48:12.000Z (about 1 year ago)
- Last Synced: 2024-11-07T17:49:55.985Z (about 1 year ago)
- Language: Java
- Size: 120 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Commons Lang
A set of useful classes, evicting you repeating yourself, avoiding fatigue
### Regex
```java
Regexes.group("https://www.youtube.com/watch?v=pvZmzT7KR3I", "v=([\\w\\-\\_]+)", 1);
// pvZmzT7KR3I
```
## Installing
```groovy
implementation 'com.mageddo.commons:commons-lang:0.1.21'
```
## Building
### Build and install dep locally
```bash
./gradlew clean build publishToMavenLocal
```
### Build, Publish to Sonatype and Release
```bash
./gradlew clean release build publishToMavenCentral closeAndReleaseMavenCentralStagingRepository
```