Skip to content

Commit

Permalink
Rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenVinouze committed Apr 29, 2016
1 parent 54831ff commit 7d97494
Show file tree
Hide file tree
Showing 43 changed files with 12 additions and 99 deletions.
8 changes: 4 additions & 4 deletions advancedrecyclerview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apply from: '../library.gradle'
apply plugin: 'kotlin-android'

dependencies {
compile project(':advancedrecyclerview-common')
compile project(':advancedrecyclerview-section')
compile project(':advancedrecyclerview-pagination')
compile project(':advancedrecyclerview-gesture')
compile project(':core')
compile project(':section')
compile project(':pagination')
compile project(':gesture')
}
85 changes: 0 additions & 85 deletions bintray-upload.gradle

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.stephenvinouze.advancedrecyclerview_common;
package com.github.stephenvinouze.advancedrecyclerview_core;

import android.app.Application;
import android.test.ApplicationTestCase;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="com.github.stephenvinouze.advancedrecyclerview_common"/>
<manifest package="com.github.stephenvinouze.advancedrecyclerview_core"/>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.stephenvinouze.advancedrecyclerview_common;
package com.github.stephenvinouze.advancedrecyclerview_core;

import org.junit.Test;

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(path: ':advancedrecyclerview-section')
compile project(path: ':section')
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ANDROID_BUILD_TOOLS_VERSION=23.0.2

POM_NAME=AdvancedRecyclerView
POM_REPO=maven
POM_DESCRIPTION=A Kotlin library that both ease and enhance the use of RecyclerView
POM_DESCRIPTION=An easy, empowering Kotlin library for RecyclerView
POM_URL=https://github.com/StephenVinouze/AdvancedRecyclerView
POM_VCS_URL=https://github.com/StephenVinouze/AdvancedRecyclerView.git
POM_SCM_CONNECTION=scm:git@github.com:StephenVinouze/AdvancedRecyclerView.git
Expand Down
2 changes: 0 additions & 2 deletions library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ android {
androidTest.java.srcDirs += 'src/androidTest/kotlin'
}
}

apply from: '../bintray-upload.gradle'
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(path: ':advancedrecyclerview-section')
compile project(path: ':section')
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile "com.nhaarman:mockito-kotlin:0.4.0"
testCompile 'junit:junit:4.12'
compile project(path: ':advancedrecyclerview-common')
compile project(path: ':core')
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':sample', ':advancedrecyclerview', ':advancedrecyclerview-common', ':advancedrecyclerview-section', ':advancedrecyclerview-pagination', ':advancedrecyclerview-gesture'
include ':sample', ':advancedrecyclerview', ':core', ':section', ':pagination', ':gesture'

0 comments on commit 7d97494

Please sign in to comment.