Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
Add more restrictive gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
aballano committed May 8, 2020
1 parent fe5d62b commit 0fbf52d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 7 additions & 0 deletions arrow-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
buildscript {
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$ATOMICFU_VERSION"
}
}

plugins {
id "maven-publish"
id "base"
Expand All @@ -12,6 +18,7 @@ plugins {
apply from: "$SUBPROJECT_CONF"
apply from: "$DOC_CONF"
apply from: "$PUBLISH_CONF"
apply plugin: 'kotlinx-atomicfu'

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
Expand Down
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ buildscript {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$ATOMICFU_VERSION"
}

}

plugins {
Expand All @@ -25,7 +23,6 @@ plugins {
apply from: "$GENERIC_CONF"

subprojects {
apply plugin: 'kotlinx-atomicfu'
}

configure(subprojects - project("arrow-meta")) {
Expand Down

0 comments on commit 0fbf52d

Please sign in to comment.