Skip to content

Commit

Permalink
upgrade to vertx 3.1.0 / Gradle 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aesteve committed Nov 15, 2015
1 parent e6cab02 commit 3093f38
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@ plugins {
id 'idea'
}

def vertxVersion = '3.1.0'

repositories {
mavenCentral()
}

dependencies {
// vertx
compile 'io.vertx:vertx-core:3.0.0'
compile 'io.vertx:vertx-service-proxy:3.0.0'
compile 'io.vertx:vertx-codegen:3.0.0'
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-service-proxy:$vertxVersion"
compile "io.vertx:vertx-codegen:$vertxVersion"

// Pegdown implementation
compile 'org.pegdown:pegdown:1.5.0'

// tests
testCompile group: 'io.vertx', name: 'vertx-unit', version: '3.0.0'
testCompile group: 'io.vertx', name: 'vertx-unit', version: vertxVersion
testCompile 'junit:junit:4.12'
}

Expand Down Expand Up @@ -50,5 +52,5 @@ clean {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.4'
gradleVersion = '2.8'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Jul 01 20:02:13 CEST 2015
#Sun Nov 15 21:56:30 CET 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-bin.zip
4 changes: 2 additions & 2 deletions src/main/java/io/vertx/markdown/package-info.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@GenModule(name = "vertx-markdown")
@ModuleGen(groupPackage = "io.vertx.markdown", name = "vertx-markdown")
package io.vertx.markdown;

import io.vertx.codegen.annotations.GenModule;
import io.vertx.codegen.annotations.ModuleGen;

0 comments on commit 3093f38

Please sign in to comment.