Skip to content

Commit 2991227

Browse files
author
Zach Ebner
committed
updating version and fixing tests
1 parent 901bece commit 2991227

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The official Java SDK for the Sovren v10 API for resume/CV and job parsing, sear
1313
### Gradle Users
1414
Add this dependency to your project's build file:
1515
```
16-
implementation "com.sovren:sovren-java:1.7.1"
16+
implementation "com.sovren:sovren-java:1.8.0"
1717
```
1818

1919
### Maven Users
@@ -22,13 +22,13 @@ Add this dependency to your project's POM:
2222
<dependency>
2323
<groupId>com.sovren</groupId>
2424
<artifactId>sovren-java</artifactId>
25-
<version>1.7.1</version>
25+
<version>1.8.0</version>
2626
</dependency>
2727
```
2828

2929
### Others
3030
You'll need to manually install the following JARs:
31-
- The Sovren JAR from https://repo1.maven.org/maven2/com/sovren/sovren-java/1.7.1/sovren-java-1.7.1.jar
31+
- The Sovren JAR from https://repo1.maven.org/maven2/com/sovren/sovren-java/1.8.0/sovren-java-1.8.0.jar
3232
- [Google Gson][gson_url] from https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar
3333
- [Square OkHttp][okhttp_url] from https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.jar
3434

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.sovren</groupId>
55
<artifactId>sovren-java</artifactId>
66

7-
<version>1.7.1</version>
7+
<version>1.8.0</version>
88

99
<packaging>jar</packaging>
1010
<name>Sovren Java SDK</name>

src/test/java/com/sovren/TestData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class TestData {
2424
public static Document ResumePersonalInformation = new Document(_resumePersonalInformationText.getBytes(StandardCharsets.UTF_8), LocalDate.now());
2525

2626

27-
private static String _jobOrderText = "Position Title: Sales Manager\n\nSkills:\n\tBudgeting\n\tAudit\n\tFinancial Statements";
27+
private static String _jobOrderText = "Position Title: Sales Manager\n\nCompany: Google\n\nSkills:\n\tBudgeting\n\tAudit\n\tFinancial Statements";
2828

2929
public static Document JobOrder = new Document(_jobOrderText.getBytes(StandardCharsets.UTF_8), LocalDate.now());
3030

src/test/java/com/sovren/integration/ParsingTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
public class ParsingTests extends TestBase {
4444
private static Stream<Arguments> provideBadDocuments() {
4545
return Stream.of(
46-
Arguments.of(null, IllegalArgumentException.class),
47-
Arguments.of(new Document(new byte[1], LocalDate.now()), SovrenException.class));
46+
Arguments.of(null, IllegalArgumentException.class)
47+
);
4848
}
4949

5050
@ParameterizedTest

0 commit comments

Comments
 (0)