You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
buildscript { |
|
dependencies { |
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.37' |
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" |
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE' |
|
} |
|
repositories { |
|
maven { |
|
url = 'https://repo.spring.io/plugins-snapshot' |
|
if (project.hasProperty('artifactoryUsername')) { |
|
credentials { |
|
username "$artifactoryUsername" |
|
password "$artifactoryPassword" |
|
} |
|
} |
|
} |
|
maven { url 'https://plugins.gradle.org/m2/' } |
|
} |
|
} |
|
|
|
apply plugin: 'io.spring.nohttp' |
|
apply plugin: 'locks' |
|
apply plugin: 'io.spring.convention.root' |
|
|
|
group = 'org.springframework.security.experimental' |
|
description = 'Spring Authorization Server' |
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT") |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
|
|
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') } |
|
|
|
subprojects { |
|
plugins.withType(JavaPlugin) { |
|
project.sourceCompatibility = "1.8" |
|
} |
|
tasks.withType(JavaCompile) { |
|
options.encoding = "UTF-8" |
|
} |
|
} |
|
|
|
nohttp { |
|
allowlistFile = project.file("etc/nohttp/allowlist.lines") |
|
}
|
|
|