update to gradle 7.4.2
This commit is contained in:
parent
60d4c667dc
commit
d86909f042
6 changed files with 24 additions and 23 deletions
|
@ -3,16 +3,4 @@ name = rpm
|
||||||
version = 2.2.0
|
version = 2.2.0
|
||||||
|
|
||||||
org.gradle.warning.mode = ALL
|
org.gradle.warning.mode = ALL
|
||||||
gradle.wrapper.version = 7.3.2
|
gradle.wrapper.version = 7.4.2
|
||||||
gradle.publish.plugin.version = 0.14.0
|
|
||||||
bouncycastle.version = 1.71
|
|
||||||
xbib-archive.version = 1.0.1
|
|
||||||
ant.version = 1.10.10
|
|
||||||
maven.version = 3.8.1
|
|
||||||
maven-plugin-annotations.version = 3.6.1
|
|
||||||
maven-plugin-plugin.version = 3.6.1
|
|
||||||
maven-wagon.version = 3.4.3
|
|
||||||
aether-connector-basic.version = 1.1.0
|
|
||||||
aether-transport-wagon.version = 1.1.0
|
|
||||||
slf4j.version = 1.7.30
|
|
||||||
mvel.version = 2.4.12.Final
|
|
||||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':rpm-core')
|
api project(':rpm-core')
|
||||||
implementation "org.apache.ant:ant:${project.property('ant.version')}"
|
implementation libs.ant
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api "org.bouncycastle:bcpg-jdk18on:${project.property('bouncycastle.version')}"
|
api libs.bouncycastle
|
||||||
api "org.xbib:io-compress-bzip2:${project.property('xbib-archive.version')}"
|
api libs.bzip2
|
||||||
api "org.xbib:io-compress-xz:${project.property('xbib-archive.version')}"
|
api libs.xz
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
||||||
|
|
|
@ -1,8 +1,21 @@
|
||||||
rootProject.name = name
|
dependencyResolutionManagement {
|
||||||
|
versionCatalogs {
|
||||||
|
libs {
|
||||||
|
version('gradle', '7.4.2')
|
||||||
|
version('junit', '5.8.2')
|
||||||
|
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
||||||
|
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
|
||||||
|
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
|
||||||
|
library('junit4', 'junit:junit:4.13.2')
|
||||||
|
library('hamcrest', 'org.hamcrest:hamcrest-library:2.2')
|
||||||
|
plugin('publish', 'com.gradle.plugin-publish').version('0.18.0')
|
||||||
|
library('bzip2', 'org.xbib', 'io-compress-bzip2').version('1.1.0')
|
||||||
|
library('xz', 'org.xbib', 'io-compress-xz').version('1.1.0')
|
||||||
|
library('bouncycastle', 'org.bouncycastle', 'bcpg-jdk18on').version('1.71')
|
||||||
|
library('ant', 'org.apache.ant', 'ant').version('1.10.10')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
include 'rpm-core'
|
include 'rpm-core'
|
||||||
include 'rpm-ant'
|
include 'rpm-ant'
|
||||||
// gradle plugin moved to antoher repository
|
|
||||||
//include 'gradle-plugin-rpm'
|
|
||||||
// maven plugin was removed in gradle
|
|
||||||
//include 'maven-plugin-rpm'
|
|
||||||
|
|
Loading…
Reference in a new issue