Skip to content

Commit 9d03d0b

Browse files
committed
moved config.properties to src/main/resouces. Using env variables for username and password
1 parent 0ce9b36 commit 9d03d0b

File tree

5 files changed

+196
-232
lines changed

5 files changed

+196
-232
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# General Configuration
44
DOXYFILE_ENCODING = UTF-8
55
PROJECT_NAME = "DataBridge Documentation"
6-
PROJECT_NUMBER = 2.0.16
6+
PROJECT_NUMBER = 2.0.17
77
PROJECT_BRIEF = "A Java library for managing database connections and transactions"
88
OUTPUT_DIRECTORY = ./docs
99
CREATE_SUBDIRS = YES

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ More soon to be added
3131
<dependency>
3232
<groupId>io.github.kdesp73</groupId>
3333
<artifactId>DataBridge</artifactId>
34-
<version>2.0.16</version>
34+
<version>2.0.17</version>
3535
</dependency>
3636
```
3737

3838
### Gradle
3939

4040
```
41-
implementation 'io.github.kdesp73:DataBridge:2.0.16'
41+
implementation 'io.github.kdesp73:DataBridge:2.0.17'
4242
```
4343

4444
## Manual Installation
@@ -47,7 +47,7 @@ implementation 'io.github.kdesp73:DataBridge:2.0.16'
4747
git clone --depth=1 https://github.com/KDesp73/DataBridge
4848
cd DataBridge
4949

50-
git checkout v2.0.16
50+
git checkout v2.0.17
5151

5252
mvn clean install
5353
```

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.github.kdesp73</groupId>
77
<artifactId>DataBridge</artifactId>
8-
<version>2.0.16</version>
8+
<version>2.0.17</version>
99
<packaging>jar</packaging>
1010

1111
<name>DataBridge</name>
@@ -53,6 +53,13 @@
5353
</properties>
5454

5555
<dependencies>
56+
<!-- https://mvnrepository.com/artifact/io.github.cdimascio/java-dotenv -->
57+
<dependency>
58+
<groupId>io.github.cdimascio</groupId>
59+
<artifactId>java-dotenv</artifactId>
60+
<version>5.2.2</version>
61+
</dependency>
62+
5663
<dependency>
5764
<groupId>org.junit.jupiter</groupId>
5865
<artifactId>junit-jupiter-api</artifactId>

0 commit comments

Comments
 (0)