Skip to content

Commit

Permalink
Refactor gradle build plugins structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
amatkivskiy committed Jan 12, 2017
1 parent bc0dbab commit e65a4ac
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 60 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.novoda:bintray-release:0.4.0"
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3"
}
}
Expand All @@ -16,7 +16,7 @@ allprojects {

repositories {
jcenter()
mavenCentral()
maven { url "https://dl.bintray.com/amatkivskiy/maven/" }
}

buildscript {
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
14 changes: 0 additions & 14 deletions library/async/build.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}

repositories {
mavenCentral()
maven { url "https://dl.bintray.com/amatkivskiy/maven/"}
}

publish {
groupId = 'com.github.amatkivskiy'
artifactId = 'gitter.sdk.async'
Expand Down
18 changes: 2 additions & 16 deletions library/core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,26 +1,12 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

version '1.5'

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}

repositories {
jcenter()
maven { url "https://dl.bintray.com/amatkivskiy/maven/"}
}
version '1.6.0'

publish {
groupId = 'com.github.amatkivskiy'
artifactId = 'gitter.sdk.core'
publishVersion = '1.5'
publishVersion = '1.6.0'
desc = 'Gitter.im RxJava SDK that facilitates communication with Gitter API'
licences = ['MIT']
website = 'https://github.com/Gitteroid/GitterJavaSDK'
Expand Down
14 changes: 0 additions & 14 deletions library/rx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,6 @@ apply plugin: 'com.novoda.bintray-release'
apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}

repositories {
jcenter()
maven { url "https://dl.bintray.com/amatkivskiy/maven/"}
}

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
Expand Down
14 changes: 0 additions & 14 deletions library/sync/build.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}

repositories {
mavenCentral()
maven { url "https://dl.bintray.com/amatkivskiy/maven/"}
}

publish {
groupId = 'com.github.amatkivskiy'
artifactId = 'gitter.sdk.sync'
Expand Down

0 comments on commit e65a4ac

Please sign in to comment.