Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Jul 7, 2023
1 parent 7227472 commit f2c63a0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation gradleApi()
implementation localGroovy()

implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation "org.antlr:antlr4:${libs.versions.antlr.get()}"
implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
implementation 'org.eclipse.tycho:org.eclipse.jdt.core:3.14.0.v20171206-0802'
Expand Down
4 changes: 2 additions & 2 deletions citeproc-java-tool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.jline:jline:3.23.0'

runtimeOnly 'org.citationstyles:styles:23.2'
runtimeOnly 'org.citationstyles:locales:23.2'
runtimeOnly 'org.citationstyles:styles:23.5'
runtimeOnly 'org.citationstyles:locales:23.5'
}

mainClassName = 'de.undercouch.citeproc.CSLTool'
Expand Down
6 changes: 3 additions & 3 deletions citeproc-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ dependencies {
implementation 'org.apache.commons:commons-text:1.10.0'
implementation 'org.yaml:snakeyaml:2.0', optional

testImplementation 'commons-io:commons-io:2.11.0'
testImplementation 'org.citationstyles:styles:23.2'
testImplementation 'org.citationstyles:locales:23.2'
testImplementation 'commons-io:commons-io:2.13.0'
testImplementation 'org.citationstyles:styles:23.5'
testImplementation 'org.citationstyles:locales:23.5'
testImplementation "org.graalvm.sdk:graal-sdk:$graalVMVersion"
testImplementation "org.graalvm.js:js:$graalVMVersion"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ public void eventPlace() throws Exception {
.event("Conference")
.eventPlace("The Place")
.build();
String bib = CSL.makeAdhocBibliography("ieee", "text", item).makeString();
assertEquals("[1]T. Author, “The Paper,” presented at the Conference, The Place.\n", bib);
String bib = CSL.makeAdhocBibliography("apa", "text", item).makeString();
assertEquals("Author, T. (n.d.). The Paper. Conference, The Place.\n", bib);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private static Map<String, Object> cslTestSuiteFileToData(File f)
String currentKey = null;
StringBuilder currentValue = null;
try (InputStream is = Files.newInputStream(f.toPath());
BOMInputStream bis = new BOMInputStream(is);
BOMInputStream bis = BOMInputStream.builder().setInputStream(is).get();
InputStreamReader isr = new InputStreamReader(bis, StandardCharsets.UTF_8);
BufferedReader br = new BufferedReader(isr)) {
String line;
Expand Down

0 comments on commit f2c63a0

Please sign in to comment.