Skip to content

Commit

Permalink
Fix blockers for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulsom committed Jul 23, 2018
1 parent 871449c commit 66d7091
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions grooves-diagrams/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

dependencies {
compile 'com.github.rahulsom:svg-builder:0.2.+'
compile 'com.github.rahulsom:svg-builder:0.2.3'
compile('com.github.sommeri:less4j:latest.release') {
exclude group: 'com.google.protobuf'
}
Expand All @@ -30,4 +30,4 @@ dependencies {
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
}
7 changes: 6 additions & 1 deletion grooves-example-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ dependencies {
compile 'commons-beanutils:commons-beanutils:1.9.3'

compileOnly "org.jetbrains:annotations:latest.release"
}
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.outputDirectory
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ abstract class AbstractPatientSpec extends Specification {
}

/**
* Provides a preconfigured {@link RESTClient} that can be given a path to execute a HTTP query.
* Provides a preconfigured RESTClient that can be given a path to execute a HTTP query.
*
* @return Preconfigured RESTClient
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* DSL to simplify writing code with Events.
*
* @param <AggregateT> The Aggregate on which this operates
* @param <EventIdT> The type of {@link EventT}'s id
* @param <EventIdT> The type of EventT's id
* @param <EventT> The type of event on which this operates
*
* @author Rahul Somasunderam
Expand All @@ -32,7 +32,7 @@ protected static AtomicLong getDefaultPositionSupplier() {
/**
* Allows executing a consumer with some context to setup events.
*
* @param <SnapshotIdT> The type of {@link SnapshotT}'s id
* @param <SnapshotIdT> The type of SnapshotT's id
* @param <SnapshotT> The type of Snapshot Generated
* @param aggregate The aggregate on which the consumer must operate
* @param entityConsumer A Consumer that decides what happens when apply is called on an
Expand Down

0 comments on commit 66d7091

Please sign in to comment.