Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
endink committed Dec 23, 2021
1 parent dd49a6c commit 9b2c856
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.gradle.kts
Expand Up @@ -2,9 +2,9 @@
plugins {

kotlin("jvm") version Constants.kotlinVersion
id("com.gradle.plugin-publish") version "0.18.0"
id("com.gradle.plugin-publish") version Constants.gradlePublishPluginVersion
if(Constants.testPlugin) {
id("com.labijie.infra") version "1.0.8" apply false
id("com.labijie.infra") version Constants.projectVersion apply false
}
id("maven-publish")
id("signing")
Expand All @@ -14,7 +14,7 @@ plugins {


group = "com.labijie.infra"
version = "1.0.11"
version = Constants.projectVersion

fun getProxyMavenRepository(): String {
val proxy: String? = System.getenv("MAVEN_PROXY")?.ifBlank { null }
Expand All @@ -29,7 +29,6 @@ repositories {
}
mavenCentral()
gradlePluginPortal()
maven { setUrl("https://repo.spring.io/plugins-release") }
}

tasks.withType(JavaCompile::class.java) {
Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/kotlin/Constants.kt
@@ -1,6 +1,8 @@
object Constants {
const val projectVersion = "1.0.12"
const val kotlinVersion = "1.6.0"
const val publishingPluginVersion = "1.1.0"
const val gradlePublishPluginVersion = "0.18.0"
const val testPlugin = false
const val kspPluginVersion = "1.6.0-1.0.1"
const val mybatisPluginVersion = "2.4"
Expand Down

0 comments on commit 9b2c856

Please sign in to comment.