Skip to content

Commit

Permalink
Updates streamline-api to v1.3.0 and dotify.task.impl to v4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Håkansson committed Jun 1, 2018
1 parent 3004164 commit 5ae49ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dependencies {
compile ('org.daisy.streamline:streamline-engine:1.2.0') {
exclude module: 'streamline-api'
}
compile 'org.daisy.streamline:streamline-api:1.2.0'
compile 'org.daisy.streamline:streamline-api:1.3.0'

runtime 'org.daisy.braille:braille-utils.impl:4.1.0'
runtime ('org.daisy.dotify:dotify.formatter.impl:4.3.0') {
Expand All @@ -100,7 +100,7 @@ dependencies {
runtime 'org.daisy.dotify:dotify.hyphenator.impl:4.0.0'
runtime 'org.daisy.dotify:dotify.text.impl:4.0.0'
runtime 'org.daisy.dotify:dotify.translator.impl:4.0.0'
runtime ('org.daisy.dotify:dotify.task.impl:4.4.0') {
runtime ('org.daisy.dotify:dotify.task.impl:4.5.0') {
exclude module: 'Saxon-HE'
exclude module: 'streamline-api'
}
Expand Down
8 changes: 4 additions & 4 deletions integrationtest/osgi/config/ConfigurationOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static Option dotifyTranslator() {
}

static Option streamlineApi() {
return MavenRepo.SONATYPE_STAGING.get("org.daisy.streamline", "streamline-api", "1.2.0");
return MavenRepo.CENTRAL.get("org.daisy.streamline", "streamline-api", "1.3.0");
}

static Option jing() {
Expand Down Expand Up @@ -96,7 +96,7 @@ public static Option dotifyFormatter() {
dotifyTranslator(),
wstx(),
saxon(),
MavenRepo.SONATYPE_STAGING.get("org.daisy.dotify", "dotify.formatter.impl", "4.3.0")
MavenRepo.CENTRAL.get("org.daisy.dotify", "dotify.formatter.impl", "4.3.0")
);
}

Expand All @@ -107,15 +107,15 @@ public static Option dotifyTasks() {
dotifyCommon(),
jing(),
saxon(),
MavenRepo.SONATYPE_STAGING.get("org.daisy.dotify", "dotify.task.impl", "4.4.0")
MavenRepo.CENTRAL.get("org.daisy.dotify", "dotify.task.impl", "4.5.0")
);
}

public static Option streamlineEngine() {
return composite(
dotifyCommon(),
streamlineApi(),
MavenRepo.SONATYPE_STAGING.get("org.daisy.streamline", "streamline-engine", "1.2.0")
MavenRepo.CENTRAL.get("org.daisy.streamline", "streamline-engine", "1.2.0")
);
}

Expand Down

0 comments on commit 5ae49ab

Please sign in to comment.