Skip to content

Commit

Permalink
Issue #332 Release 3.0.0.m1
Browse files Browse the repository at this point in the history
Fix to not deploy demos
  • Loading branch information
ljacomet committed Mar 24, 2015
1 parent 8865675 commit 8bfc528
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ subprojects {
apply plugin: 'jacoco'

group = 'org.ehcache.modules'
version = '3.0.0-SNAPSHOT'
version = '3.0.0.m1'

ext.isReleaseVersion = !version.endsWith('SNAPSHOT')

Expand Down
5 changes: 4 additions & 1 deletion demos/00-NoCache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ repositories{

dependencies {
compile 'ch.qos.logback:logback-classic:1.0.13', 'javax.servlet:servlet-api:2.5', 'com.h2database:h2:1.4.186', project(':impl')
}
}

uploadArchives.onlyIf { false }
install.onlyIf { false }
5 changes: 4 additions & 1 deletion demos/01-CacheAside/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ repositories{

dependencies {
compile 'ch.qos.logback:logback-classic:1.0.13', 'javax.servlet:servlet-api:2.5', 'com.h2database:h2:1.4.186', project(':impl')
}
}

uploadArchives.onlyIf { false }
install.onlyIf { false }

0 comments on commit 8bfc528

Please sign in to comment.