Skip to content

Releases: Vankka/DependencyDownload

v1.3.1

03 Jul 19:25
8ecba3e
Compare
Choose a tag to compare
  • Changed the default User-Agent to be DependencyDownload/version
  • Repository#openConnection can now return URLConnections instead of just HTTPSUrlConnections, however HTTPUrlConnections are still blocked in the default implementation
  • The buffer size of downloads can be changed in Repository now
  • The constructor of StandardRepository now automatically removes a trailing slash (if any)
  • Fixed generated resources having the same dependencies multiple times

Full Changelog: v1.3.0...v1.3.1

v1.3.0

03 Oct 16:25
4f08238
Compare
Choose a tag to compare
  • Added ApplicationDependencyManager for managing dependencies from multiple DependencyManager
  • Added ResourceSplittingStrategy for splitting dependencies into multiple files
  • Fix classifier not being applied in Dependency#getFileName by @Romaindu35 in #7
  • Fix package-private error in Kotlin DSL by @Speedy11CZ in #13

Full Changelog: v1.2.1...v1.3.0

v1.2.1

14 Feb 09:23
234356d
Compare
Choose a tag to compare

⚠️ 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>

Gradle

plugins {
    id 'dev.vankka.dependencydownload.plugin' version '1.2.1'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'dev.vankka:dependencydownload-runtime:1.2.1'
}

v1.2.0

11 Feb 10:33
b7c2d4a
Compare
Choose a tag to compare
  • Added support for per-dependency paths
  • Added support for classifiers
  • Added Automatic-Module-Names to runtime & common

Thanks to Romaindu35 for contributing to this update!

Gradle

plugins {
    id 'dev.vankka.dependencydownload.plugin' version '1.2.0'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'dev.vankka.dependencydownload:runtime:1.2.0'
}