Skip to content

Commit

Permalink
feat: add maven plugin to all projects
Browse files Browse the repository at this point in the history
  • Loading branch information
zijing07 committed Mar 18, 2019
1 parent 9d2940a commit 2439a2f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
base
kotlin("jvm") version "1.3.21" apply false
kotlin("jvm") version "1.3.21"
}

allprojects {

apply(plugin = "maven")

group = "me.mozidev.keepdefault"
version = "1.0-SNAPSHOT"
version = "1.0"

repositories {
maven(url = "http://maven.aliyun.com/nexus/content/groups/public/")
Expand All @@ -18,3 +20,7 @@ allprojects {
kotlinOptions.jvmTarget = "1.8"
}
}

repositories {
maven(url = "https://jitpack.io")
}

0 comments on commit 2439a2f

Please sign in to comment.