Update task to use Milestone build

Updated partitioned sample readme

Updated samples base boot version

Updated jpa sample to use jakarta
This commit is contained in:
Glenn Renfro
2022-01-25 14:17:57 -05:00
parent ff5d116898
commit c753b98a76
13 changed files with 19 additions and 19 deletions

View File

@@ -18,8 +18,8 @@ $ ./mvnw clean install
[source,shell,indent=2]
----
$ export SPRING_APPLICATION_JSON='{"spring":{"datasource":{"url":"jdbc:mysql://localhost:3306/<your database>","username":"<your username>","password":"<your password>","driverClassName":"org.mariadb.jdbc.Driver"}}}'
$ java -jar target/partitioned-batch-job-3.0.0.jar
export SPRING_APPLICATION_JSON='{"spring.datasource.url":"jdbc:mariadb://localhost:3306/<your database>","spring.datasource.password":"<your password>","spring.datasource.username":"<your username>","spring.datasource.driverClassName":"org.mariadb.jdbc.Driver"}'
java -jar target/partitioned-batch-job-3.0.0.jar
----
NOTE: This example will use require a MySql RDBMS repository and currently uses the mariadb jdbc driver to connect.

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M1</version>
<relativePath />
</parent>