2 Star 0 Fork 0

mirrors_auth0/auth0-java-mvc-common

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 2.30 KB
一键复制 编辑 原始数据 按行查看 历史
Jim Anderson 提交于 2022-10-26 21:30 +08:00 . Release 1.9.3 (#120)
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"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_auth0/auth0-java-mvc-common.git
git@gitee.com:mirrors_auth0/auth0-java-mvc-common.git
mirrors_auth0
auth0-java-mvc-common
auth0-java-mvc-common
1.9.3

搜索帮助