代码拉取完成,页面将自动刷新
buildscript {
version = "1.9.3"
}
plugins {
id 'java'
id 'jacoco'
id 'com.auth0.gradle.oss-library.java'
}
def signingKey = findProperty('signingKey')
def signingKeyPwd = findProperty('signingPassword')
signing {
useInMemoryPgpKeys(signingKey, signingKeyPwd)
}
repositories {
mavenCentral()
}
group 'com.auth0'
logger.lifecycle("Using version ${version} for ${name} group $group")
oss {
name 'mvc-auth-commons'
repository 'auth0-java-mvc-common'
organization 'auth0'
description 'Java library that simplifies the use of Auth0 for server-side MVC web apps'
baselineCompareVersion '1.5.0'
skipAssertSigningConfiguration true
developers {
auth0 {
displayName = 'Auth0'
email = 'oss@auth0.com'
}
lbalmaceda {
displayName = 'Luciano Balmaceda'
email = 'luciano.balmaceda@auth0.com'
}
}
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileJava {
sourceCompatibility '1.8'
targetCompatibility '1.8'
}
test {
useJUnitPlatform()
testLogging {
events "skipped", "failed"
exceptionFormat "short"
}
}
dependencies {
implementation 'javax.servlet:javax.servlet-api:3.1.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.guava:guava-annotations:r03'
implementation 'commons-codec:commons-codec:1.15'
api 'com.auth0:auth0:1.44.1'
api 'com.auth0:java-jwt:3.19.3'
api 'com.auth0:jwks-rsa:0.21.2'
testImplementation 'org.bouncycastle:bcprov-jdk15on:1.64'
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.mockito:mockito-core:2.8.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
testImplementation 'org.springframework:spring-test:4.3.14.RELEASE'
testImplementation 'com.squareup.okhttp3:okhttp:4.9.3'
}
// Creates a version.txt file containing the current version of the SDK.
// This file is picked up and parsed by our Ship Orb to determine the version.
task exportVersion() {
doLast {
new File(rootDir, "version.txt").text = "$version"
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。