* Upgrade all the dependencies to the latest versions * Fix some incompatibilities * Fix some warnings
20 lines
385 B
Groovy
20 lines
385 B
Groovy
description = 'Spring Functions Catlog (Bill of Materials)'
|
|
|
|
apply plugin: 'java-platform'
|
|
apply from: "${rootDir}/publish-maven.gradle"
|
|
|
|
dependencies {
|
|
constraints {
|
|
javaProjects.sort { "$it.name" }.each {
|
|
api it
|
|
}
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.javaPlatform
|
|
}
|
|
}
|
|
} |