Skip to content

Commit

Permalink
升级springboot1.x到2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dongxuanliang252 authored and dongxuanliang252 committed Jul 23, 2020
1 parent 917abac commit dbdf228
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions win-cas/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ dependencies {
uploadArchives {
repositories {
mavenDeployer {
// repository(url: "https://repo.rdc.aliyun.com/repository/77327-snapshot-eSlStJ/") {
// authentication(userName: "YqEg7E", password: "kqPhqT56Db")
// }
repository(url: "http://192.168.180.191:8081/nexus/content/repositories/snapshots/") {
authentication(userName: "admin", password: "admin123")
}
Expand Down
18 changes: 18 additions & 0 deletions win-security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,22 @@ dependencies {
implementation("org.springframework:spring-web")
implementation("org.jasig.cas.client:cas-client-core:3.5.1")
implementation('org.apache.shiro:shiro-spring:1.4.2')
}
//支持上传到maven nexus库
uploadArchives {
repositories {
mavenDeployer {
// repository(url: "https://repo.rdc.aliyun.com/repository/77327-snapshot-eSlStJ/") {
// authentication(userName: "YqEg7E", password: "kqPhqT56Db")
// }
repository(url: "http://192.168.180.191:8081/nexus/content/repositories/snapshots/") {
authentication(userName: "admin", password: "admin123")
}
pom.project {
name = project.name
packaging = 'jar'
description = 'win security'
}
}
}
}

0 comments on commit dbdf228

Please sign in to comment.