Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DO NOT commit .env file to git - it's already in .gitignore
#
# These environment variables are used for database connection
# and correspond to the Spring Boot 3.5+ Couchbase properties:
# and correspond to the Spring Boot 4.0+ Couchbase properties:
Comment thread
dex-the-ai marked this conversation as resolved.
# - spring.couchbase.connection-string
# - spring.couchbase.username
# - spring.couchbase.password
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.1</version>
<version>4.0.3</version>
Comment thread
dex-the-ai marked this conversation as resolved.
</parent>

<groupId>org.couchbase</groupId>
Expand All @@ -20,11 +20,11 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<couchbase.version>3.10.0</couchbase.version>
<couchbase.version>3.11.1</couchbase.version>
Comment thread
dex-the-ai marked this conversation as resolved.
<lombok.version>1.18.42</lombok.version>
<springdoc.version>3.0.1</springdoc.version>
<junit.version>4.13.2</junit.version>
<maven-surefire.version>3.5.4</maven-surefire.version>
<maven-surefire.version>3.5.5</maven-surefire.version>
Comment thread
dex-the-ai marked this conversation as resolved.
</properties>

<dependencies>
Expand Down Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>3.0.2</version>
<version>3.2.0</version>
Comment thread
dex-the-ai marked this conversation as resolved.
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -122,7 +122,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.15.0</version>
Comment thread
dex-the-ai marked this conversation as resolved.
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
Expand Down
Loading