Skip to content

Commit e6b4099

Browse files
committed
work in progress: spring-session-jdbc
1 parent 8eef358 commit e6b4099

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747

4848

4949
<properties>
50-
<java.version>13</java.version>
50+
<java.version>11</java.version>
5151
<version.maven>3.6.3</version.maven>
5252
<spring-boot-admin.version>2.2.1</spring-boot-admin.version>
5353
<maven.scm.version>1.11.2</maven.scm.version>
5454
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
5555
<maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>
5656
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
57-
<maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
57+
<maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version>
5858
<maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version>
5959
<maven-pmd-plugin.version>3.11.0</maven-pmd-plugin.version>
6060
<maven-surefire-report-plugin.version>3.0.0-M4</maven-surefire-report-plugin.version>
@@ -817,6 +817,7 @@
817817
<plugin>
818818
<groupId>org.apache.maven.plugins</groupId>
819819
<artifactId>maven-project-info-reports-plugin</artifactId>
820+
<version>3.0.0</version>
820821
<configuration>
821822
<skipEmptyReport>true</skipEmptyReport>
822823
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
@@ -843,18 +844,22 @@
843844
<plugin>
844845
<groupId>org.apache.maven.plugins</groupId>
845846
<artifactId>maven-jxr-plugin</artifactId>
847+
<version>${maven-jxr-plugin.version}</version>
846848
</plugin>
847849
<plugin>
848850
<groupId>org.apache.maven.plugins</groupId>
849851
<artifactId>maven-checkstyle-plugin</artifactId>
852+
<version>${maven-checkstyle-plugin.version}</version>
850853
</plugin>
851854
<plugin>
852855
<groupId>com.github.spotbugs</groupId>
853856
<artifactId>spotbugs-maven-plugin</artifactId>
857+
<version>4.0.0</version>
854858
</plugin>
855859
<plugin>
856860
<groupId>org.apache.maven.plugins</groupId>
857861
<artifactId>maven-pmd-plugin</artifactId>
862+
<version>3.13.0</version>
858863
<configuration>
859864
<minimumTokens>100</minimumTokens>
860865
<targetJdk>${java.version}</targetJdk>
@@ -880,6 +885,7 @@
880885
<plugin>
881886
<groupId>org.apache.maven.plugins</groupId>
882887
<artifactId>maven-surefire-report-plugin</artifactId>
888+
<version>3.0.0-M4</version>
883889
<configuration>
884890
<skipFailsafeReport>true</skipFailsafeReport>
885891
<skipSurefireReport>true</skipSurefireReport>

src/main/resources/application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ spring:
2929
jdbc:
3030
initialize-schema: ALWAYS
3131
#cleanup-cron: 0 * * * *simpleworklist *
32-
schema: classpath:org/springframework/session/jdbc/schema-postgresql.sql
33-
table-name: SPRING_SESSION
32+
schema: 'classpath:org/springframework/session/jdbc/schema-postgresql.sql'
33+
table-name: 'spring_session'
3434
thymeleaf:
3535
cache: false
3636
main:

0 commit comments

Comments
 (0)