Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
version bump and minor changes to gradle scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos Torres committed Nov 20, 2014
1 parent e96fcde commit 756d052
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
4 changes: 2 additions & 2 deletions sdk/android-libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ def myProject = project

uploadArchives {
repositories.mavenDeployer {
pom.groupId = myProject.groupId
pom.groupId = myProject.group
pom.artifactId = PUBLISH_ARTIFACT_ID
pom.version = myProject.sdkVersion
pom.version = myProject.version
repository (
url: 'https://api.bintray.com/maven/msopentech/Maven/Office-365-SDK-for-Android'
) {
Expand Down
10 changes: 5 additions & 5 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ buildscript {
}

allprojects {
project.ext{
desc = 'Office 365 Android SDK'
sdkVersion = '0.9.3'
groupId = 'com.microsoft.services'
}

repositories {
jcenter()
}

apply plugin: 'idea'
group = 'com.microsoft.services'
version = '0.9.4'
}
1 change: 0 additions & 1 deletion sdk/file-services/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
apply plugin: 'java'
apply plugin: 'eclipse'

dependencies {
compile project(':odata-engine-core')
Expand Down
10 changes: 6 additions & 4 deletions sdk/java-libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ bintray {
configurations = ['published'] //When uploading configuration files
apiUrl = "https://api.bintray.com"
user = 'user'
key = 'key'
key = 'foo'
dryRun = false

filesSpec {
Expand All @@ -73,10 +73,12 @@ bintray {
attributes = ['plat': ['android', 'java']]
publicDownloadNumbers = true

def ver = myProject.version

version {
name = myProject.sdkVersion //Optional logical version name
desc = myProject.desc
vcsTag = myProject.sdkVersion
name = ver //Optional logical version name
desc = 'Office 365 Android SDK for Android'
vcsTag = ver
}
}
}
4 changes: 3 additions & 1 deletion sdk/odata-engine-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.guava:guava:18.0'
compile 'com.google.code.gson:gson:2.3'
}
}

apply from :'../java-libraries.gradle'

0 comments on commit 756d052

Please sign in to comment.