Skip to content

Commit

Permalink
Updated ical4j dependency to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Apr 18, 2015
1 parent 4db8e50 commit e2e27eb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build.gradle
Expand Up @@ -22,7 +22,7 @@ repositories {
}

dependencies {
compile 'org.mnode.ical4j:ical4j:1.0.5.2'
compile 'org.mnode.ical4j:ical4j:2.0-alpha1'

testCompile 'junit:junit:4.11'
}
Expand Down Expand Up @@ -58,10 +58,16 @@ release {

group = 'org.mnode.ical4j'
version = release.projectVersion
description = '''
description = '''\
MS Outlook-compatible Timezone Definitions
'''
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
ext {
isReleaseVersion = !version.endsWith("SNAPSHOT")

// sonatype credentials
sonatypeUsername = project.hasProperty('sonatypeUsername') ? project.getProperty('sonatypeUsername') : ''
sonatypePassword = project.hasProperty('sonatypePassword') ? project.getProperty('sonatypePassword') : ''
}

uploadArchives {
repositories {
Expand Down

0 comments on commit e2e27eb

Please sign in to comment.