Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shiveshnavin committed Sep 10, 2023
1 parent 9743f30 commit 8252031
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Release
<dependency>
<groupId>io.github.shiveshnavin</groupId>
<artifactId>firestore-jdbc</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>
```
Snapshot (Experimental)
```xml
<dependency>
<groupId>io.github.shiveshnavin</groupId>
<artifactId>firestore-jdbc</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.2-SNAPSHOT</version>
</dependency>
```
## Usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class TestHelper {
public static FirestoreJDBCConnection getConnection() throws RuntimeException{
try {
DriverManager.registerDriver(new FirestoreJDBCDriver());
String serviceAccountJsonPath = FirestoreHelper.class.getClassLoader().getResource("keys/test-a0930.json").getFile();
String serviceAccountJsonPath = "D:\\code\\node_projects\\xpasteit\\creds.json";
FirestoreJDBCConnection con= (FirestoreJDBCConnection) DriverManager.getConnection(serviceAccountJsonPath);
return con;
} catch (Exception e) {
Expand Down

0 comments on commit 8252031

Please sign in to comment.