An open API service indexing awesome lists of open source software.

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

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
```