Releases: Vankka/DependencyDownload
Releases · Vankka/DependencyDownload
v1.3.1
- Changed the default User-Agent to be
DependencyDownload/version
Repository#openConnection
can now return URLConnections instead of justHTTPSUrlConnection
s, howeverHTTPUrlConnection
s 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
- 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
⚠️ 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
- 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'
}