Skip to content

Commit ca93e38

Browse files
committed
spring boot 2.5.1 update
1 parent 32fcf5b commit ca93e38

File tree

11 files changed

+81
-15
lines changed

11 files changed

+81
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Extendable store types. JDBC store as default.
1212
<dependency>
1313
<groupId>com.ttulka.spring.boot.configstore</groupId>
1414
<artifactId>configuration-properties-store-jdbc-spring-boot-starter</artifactId>
15-
<version>1.3.0</version>
15+
<version>1.3.1</version>
1616
</dependency>
1717
```
1818

api/.factorypath

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<factorypath>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.3.7/spring-context-5.3.7.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.3.7/spring-aop-5.3.7.jar" enabled="true" runInBatchMode="false"/>
5+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.3.7/spring-beans-5.3.7.jar" enabled="true" runInBatchMode="false"/>
6+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.3.7/spring-core-5.3.7.jar" enabled="true" runInBatchMode="false"/>
7+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.3.7/spring-jcl-5.3.7.jar" enabled="true" runInBatchMode="false"/>
8+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.3.7/spring-expression-5.3.7.jar" enabled="true" runInBatchMode="false"/>
9+
</factorypath>

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.ttulka.spring.boot.configstore</groupId>
88
<artifactId>configuration-properties-store-parent</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.1-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>configuration-properties-store-api</artifactId>

examples/sample-app/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>2.5.0</version>
9+
<version>2.5.1</version>
1010
</parent>
1111
<groupId>com.ttulka.spring.configstore</groupId>
1212
<artifactId>sample-app</artifactId>
13-
<version>1.3.0-SNAPSHOT</version>
13+
<version>1.3.1-SNAPSHOT</version>
1414

1515
<dependencies>
1616
<dependency>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>com.ttulka.spring.boot.configstore</groupId>
2222
<artifactId>configuration-properties-store-jdbc-spring-boot-starter</artifactId>
23-
<version>1.2.6-SNAPSHOT</version>
23+
<version>1.3.1-SNAPSHOT</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>com.h2database</groupId>

jdbc-store/.factorypath

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<factorypath>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.3.7/spring-context-5.3.7.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.3.7/spring-aop-5.3.7.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.3.7/spring-beans-5.3.7.jar" enabled="true" runInBatchMode="false"/>
5+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.3.7/spring-core-5.3.7.jar" enabled="true" runInBatchMode="false"/>
6+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.3.7/spring-jcl-5.3.7.jar" enabled="true" runInBatchMode="false"/>
7+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.3.7/spring-expression-5.3.7.jar" enabled="true" runInBatchMode="false"/>
8+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.3.7/spring-jdbc-5.3.7.jar" enabled="true" runInBatchMode="false"/>
9+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.3.7/spring-tx-5.3.7.jar" enabled="true" runInBatchMode="false"/>
10+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar" enabled="true" runInBatchMode="false"/>
11+
</factorypath>

jdbc-store/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.ttulka.spring.boot.configstore</groupId>
88
<artifactId>configuration-properties-store-parent</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.1-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>configuration-properties-store-jdbc</artifactId>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.ttulka.spring.boot.configstore</groupId>
2121
<artifactId>configuration-properties-store-api</artifactId>
22-
<version>1.3.0-SNAPSHOT</version>
22+
<version>1.3.1-SNAPSHOT</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.springframework</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
<groupId>com.ttulka.spring.boot.configstore</groupId>
88
<artifactId>configuration-properties-store-parent</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.1-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Configuration Properties Store for Spring Boot - Parent</name>
1313
<description>Mutable persistent configuration properties that survive an application restart.</description>
1414
<url>https://github.com/ttulka/spring-boot-configuration-properties-store</url>
1515

1616
<properties>
17-
<spring.boot.version>2.5.0</spring.boot.version>
17+
<spring.boot.version>2.5.1</spring.boot.version>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
</properties>
2020

starter-base/.factorypath

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<factorypath>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.3.7/spring-context-5.3.7.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.3.7/spring-aop-5.3.7.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.3.7/spring-beans-5.3.7.jar" enabled="true" runInBatchMode="false"/>
5+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.3.7/spring-expression-5.3.7.jar" enabled="true" runInBatchMode="false"/>
6+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.5.0/spring-boot-starter-2.5.0.jar" enabled="true" runInBatchMode="false"/>
7+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.5.0/spring-boot-2.5.0.jar" enabled="true" runInBatchMode="false"/>
8+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.5.0/spring-boot-autoconfigure-2.5.0.jar" enabled="true" runInBatchMode="false"/>
9+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.5.0/spring-boot-starter-logging-2.5.0.jar" enabled="true" runInBatchMode="false"/>
10+
<factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
11+
<factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
12+
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.14.1/log4j-to-slf4j-2.14.1.jar" enabled="true" runInBatchMode="false"/>
13+
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar" enabled="true" runInBatchMode="false"/>
14+
<factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar" enabled="true" runInBatchMode="false"/>
15+
<factorypathentry kind="VARJAR" id="M2_REPO/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar" enabled="true" runInBatchMode="false"/>
16+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.3.7/spring-core-5.3.7.jar" enabled="true" runInBatchMode="false"/>
17+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.3.7/spring-jcl-5.3.7.jar" enabled="true" runInBatchMode="false"/>
18+
<factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar" enabled="true" runInBatchMode="false"/>
19+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar" enabled="true" runInBatchMode="false"/>
20+
<factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar" enabled="true" runInBatchMode="false"/>
21+
</factorypath>

starter-base/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.ttulka.spring.boot.configstore</groupId>
88
<artifactId>configuration-properties-store-parent</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.1-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>configuration-properties-store-spring-boot-starter-base</artifactId>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.ttulka.spring.boot.configstore</groupId>
2121
<artifactId>configuration-properties-store-api</artifactId>
22-
<version>1.3.0-SNAPSHOT</version>
22+
<version>1.3.1-SNAPSHOT</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.springframework.boot</groupId>

starter-jdbc/.factorypath

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<factorypath>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-context/5.3.7/spring-context-5.3.7.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-aop/5.3.7/spring-aop-5.3.7.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-beans/5.3.7/spring-beans-5.3.7.jar" enabled="true" runInBatchMode="false"/>
5+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-expression/5.3.7/spring-expression-5.3.7.jar" enabled="true" runInBatchMode="false"/>
6+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter/2.5.0/spring-boot-starter-2.5.0.jar" enabled="true" runInBatchMode="false"/>
7+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-autoconfigure/2.5.0/spring-boot-autoconfigure-2.5.0.jar" enabled="true" runInBatchMode="false"/>
8+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-logging/2.5.0/spring-boot-starter-logging-2.5.0.jar" enabled="true" runInBatchMode="false"/>
9+
<factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar" enabled="true" runInBatchMode="false"/>
10+
<factorypathentry kind="VARJAR" id="M2_REPO/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar" enabled="true" runInBatchMode="false"/>
11+
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-to-slf4j/2.14.1/log4j-to-slf4j-2.14.1.jar" enabled="true" runInBatchMode="false"/>
12+
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar" enabled="true" runInBatchMode="false"/>
13+
<factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar" enabled="true" runInBatchMode="false"/>
14+
<factorypathentry kind="VARJAR" id="M2_REPO/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar" enabled="true" runInBatchMode="false"/>
15+
<factorypathentry kind="VARJAR" id="M2_REPO/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar" enabled="true" runInBatchMode="false"/>
16+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jdbc/5.3.7/spring-jdbc-5.3.7.jar" enabled="true" runInBatchMode="false"/>
17+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-tx/5.3.7/spring-tx-5.3.7.jar" enabled="true" runInBatchMode="false"/>
18+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-starter-jdbc/2.5.0/spring-boot-starter-jdbc-2.5.0.jar" enabled="true" runInBatchMode="false"/>
19+
<factorypathentry kind="VARJAR" id="M2_REPO/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar" enabled="true" runInBatchMode="false"/>
20+
<factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar" enabled="true" runInBatchMode="false"/>
21+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar" enabled="true" runInBatchMode="false"/>
22+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot/2.5.0/spring-boot-2.5.0.jar" enabled="true" runInBatchMode="false"/>
23+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-core/5.3.7/spring-core-5.3.7.jar" enabled="true" runInBatchMode="false"/>
24+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/spring-jcl/5.3.7/spring-jcl-5.3.7.jar" enabled="true" runInBatchMode="false"/>
25+
</factorypath>

0 commit comments

Comments
 (0)