Skip to content

Commit

Permalink
Refactor upload task
Browse files Browse the repository at this point in the history
  • Loading branch information
izumin5210 committed Nov 29, 2015
1 parent 4b9265c commit daf94fc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ ext {
def versionBuild = 0

VERSION = "${versionMajor}.${versionMinor}.${versionPatch}"
USER_ORG = 'izumin5210'
GROUP_ID = 'info.izumin.android'
WEBSITE = 'https://github.com/izumin5210/Droidux'
}
6 changes: 3 additions & 3 deletions droidux-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ dependencies {
}

publish {
userOrg = 'izumin5210'
groupId = 'info.izumin.android'
userOrg = USER_ORG
groupId = GROUP_ID
artifactId = 'droidux-processor'
version = VERSION
description = 'Code generator for info.izumin.android.droidux'
website = 'https://github.com/izumin5210/Droidux'
website = WEBSITE
}

6 changes: 3 additions & 3 deletions droidux/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ dependencies {
}

publish {
userOrg = 'izumin5210'
groupId = 'info.izumin.android'
userOrg = USER_ORG
groupId = GROUP_ID
artifactId = 'droidux'
version = VERSION
description = '"Predictable state container" implementation, inspired by Redux for JS.'
website = 'https://github.com/izumin5210/Droidux'
website = WEBSITE
}
6 changes: 3 additions & 3 deletions middlewares/droidux-thunk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ dependencies {
}

publish {
userOrg = 'izumin5210'
groupId = 'info.izumin.android'
userOrg = USER_ORG
groupId = GROUP_ID
artifactId = 'droidux-thunk'
version = '0.1.0'
description = 'Thunk middleware for Droidux.'
website = 'https://github.com/izumin5210/Droidux'
website = WEBSITE
}

0 comments on commit daf94fc

Please sign in to comment.