Skip to content

Commit

Permalink
Bump version & update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Vankka committed Feb 14, 2022
1 parent 1a58e61 commit 234356d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DependencyDownload
![Maven Central](https://img.shields.io/maven-central/v/dev.vankka.dependencydownload/runtime?label=release)
![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/dev.vankka.dependencydownload/runtime?label=dev&server=https%3A%2F%2Fs01.oss.sonatype.org)
![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/dev.vankka.dependencydownload.plugin?label=gradle%20plugin)
[![Maven Central](https://img.shields.io/maven-central/v/dev.vankka/dependencydownload-runtime?label=release)](https://search.maven.org/search?q=g:dev.vankka%20a:dependencydownload-*)
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/dev.vankka/dependencydownload-runtime?label=dev&server=https%3A%2F%2Fs01.oss.sonatype.org)](https://s01.oss.sonatype.org/#view-repositories;snapshots~browsestorage~dev)
[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/dev.vankka.dependencydownload.plugin?label=gradle%20plugin)](https://plugins.gradle.org/plugin/dev.vankka.dependencydownload.plugin)

A library to download, relocate & load dependencies during runtime.
There is also a Gradle plugin to generate a metadata file, to avoid having to define the dependencies in code
Expand All @@ -10,13 +10,18 @@ Uses [jar-relocator](https://github.com/lucko/jar-relocator/) for relocations du
Looking for something to use with Minecraft? [Check out MinecraftDependencyDownload](https://github.com/Vankka/MinecraftDependencyDownload/)

## Dependency

## ⚠️ Group Id & Artifact Id change

The group id & artifact were changed in version `1.2.1` from `dev.vankka.dependencydownload:<module>` to `dev.vankka:dependencydownload-<module>`

```groovy
repositories {
mavenCentral()
}
dependencies {
implementation 'dev.vankka.dependencydownload:runtime:1.2.0'
implementation 'dev.vankka:dependencydownload-runtime:1.2.1'
}
```

Expand All @@ -31,7 +36,7 @@ repositories {
}
dependencies {
implementation 'dev.vankka.dependencydownload:runtime:1.2.1-SNAPSHOT'
implementation 'dev.vankka:dependencydownload-runtime:1.2.2-SNAPSHOT'
}
```
</details>
Expand All @@ -54,7 +59,7 @@ manager.loadAll(executor, classpathAppender).join(); // ClasspathAppender is a i
## Gradle plugin
```groovy
plugins {
id 'dev.vankka.dependencydownload.plugin' version '1.2.0'
id 'dev.vankka.dependencydownload.plugin' version '1.2.1'
}
dependencies {
Expand Down Expand Up @@ -92,7 +97,7 @@ Bring the jar minifying to the next extreme
```groovy
import dev.vankka.dependencydownload.task.GenerateDependencyDownloadResourceTask
plugins {
id 'dev.vankka.dependencydownload.plugin' version '1.2.0'
id 'dev.vankka.dependencydownload.plugin' version '1.2.1'
}
configurations {
Expand All @@ -104,7 +109,7 @@ repositories {
}
dependencies {
implementation('dev.vankka.dependencydownload:runtime:1.2.0') {
implementation('dev.vankka:dependencydownload-runtime:1.2.1') {
exclude module: 'jar-relocator'
}
jarRelocator 'me.lucko:jar-relocator:1.4'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'org.cadixdev.licenser' version '0.6.0'
}

version = '1.2.1-SNAPSHOT'
version = '1.2.2-SNAPSHOT'

subprojects {
apply plugin: 'java'
Expand Down

0 comments on commit 234356d

Please sign in to comment.