Skip to content

Commit c0947d1

Browse files
committed
v16.28.3
1 parent 9c93580 commit c0947d1

File tree

7 files changed

+13
-34
lines changed

7 files changed

+13
-34
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This is a Spring Boot web application with a Bootstrap user interface, with sour
4040
- Start the application from Maven, run
4141
`mvn -Dspring-boot.run.fork=false spring-boot:run`
4242
- Start application from the jar file, run
43-
`java -jar target/schemacrawler-webapp-16.28.2-1.jar`
43+
`java -jar target/schemacrawler-webapp-16.28.3-1.jar`
4444
- Start the application from the local image in a Docker container, run
4545
`docker run -d --rm --env AWS_ACCESS_KEY_ID=xxxxx --env AWS_SECRET_ACCESS_KEY=xxxxx --env AWS_S3_BUCKET=xxxxx -p 8080:8080 -t schemacrawler/schemacrawler-webapp`
4646

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7575
with:
7676
upload_url: ${{ steps.create-release.outputs.upload_url }}
77-
asset_path: ./target/schemacrawler-webapp-16.28.2-1.jar
78-
asset_name: schemacrawler-webapp-16.28.2-1.jar
77+
asset_path: ./target/schemacrawler-webapp-16.28.3-1.jar
78+
asset_name: schemacrawler-webapp-16.28.3-1.jar
7979
asset_content_type: application/zip
8080

8181
# BUILD AND PUBLISH DOCKER IMAGE
@@ -102,7 +102,7 @@ jobs:
102102
linux/amd64
103103
linux/arm64
104104
tags: |-
105-
schemacrawler/schemacrawler-webapp:v16.28.2-1
105+
schemacrawler/schemacrawler-webapp:v16.28.3-1
106106
schemacrawler/schemacrawler-webapp:latest
107107
sbom: true
108108
provenance: true

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
FROM eclipse-temurin:21-jdk-alpine
2828

29-
ARG SCHEMACRAWLER_VERSION=16.28.2
30-
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.28.2-1
29+
ARG SCHEMACRAWLER_VERSION=16.28.3
30+
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.28.3-1
3131

3232
LABEL \
3333
"maintainer"="Sualeh Fatehi <sualeh@hotmail.com>" \

pom.xml

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

77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-webapp</artifactId>
9-
<version>16.28.2-1</version>
9+
<version>16.28.3-1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SchemaCrawler Web Application</name>
1313

1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.5.5</version>
17+
<version>3.5.6</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>us.fatehi</groupId>
6060
<artifactId>schemacrawler-parent</artifactId>
61-
<version>16.28.2</version>
61+
<version>16.28.3</version>
6262
<scope>import</scope>
6363
<type>pom</type>
6464
</dependency>
@@ -137,14 +137,13 @@
137137
<dependency>
138138
<groupId>us.fatehi</groupId>
139139
<artifactId>schemacrawler-sqlite</artifactId>
140-
<version>16.28.2</version>
140+
<version>16.28.3</version>
141141
</dependency>
142142

143143

144144
<dependency>
145145
<groupId>org.apache.tika</groupId>
146146
<artifactId>tika-core</artifactId>
147-
<version>3.2.3</version>
148147
</dependency>
149148

150149
<dependency>
@@ -255,26 +254,6 @@
255254
</plugins>
256255
</pluginManagement>
257256
<plugins>
258-
<plugin>
259-
<groupId>org.apache.maven.plugins</groupId>
260-
<artifactId>maven-toolchains-plugin</artifactId>
261-
<version>3.2.0</version>
262-
<executions>
263-
<execution>
264-
<goals>
265-
<goal>toolchain</goal>
266-
</goals>
267-
</execution>
268-
</executions>
269-
<configuration>
270-
<toolchains>
271-
<jdk>
272-
<version>21</version>
273-
<vendor>temurin</vendor>
274-
</jdk>
275-
</toolchains>
276-
</configuration>
277-
</plugin>
278257
<plugin>
279258
<groupId>org.apache.maven.plugins</groupId>
280259
<artifactId>maven-compiler-plugin</artifactId>

src/main/resources/api/schemacrawler-web-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: SchemaCrawler Web Application
44
description: Create a SchemaCrawler schema diagram from an uploaded SQLite database file
5-
version: '16.28.2-1'
5+
version: '16.28.3-1'
66
license:
77
name: Eclipse Public License (EPL-2.0)
88
url: https://www.eclipse.org/legal/epl-2.0/

src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22

3-
SchemaCrawler Web Application v16.28.2-1
3+
SchemaCrawler Web Application v16.28.3-1
44
Spring Boot ${spring-boot.version}

src/main/resources/templates/fragments/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</div>
99
<div id="footer" xmlns:dc="http://purl.org/dc/elements/1.1/" class="small">
1010
<p id="copyright" property="dc:rights">
11-
<span>SchemaCrawler Web Application, version 16.28.2-1</span><br />
11+
<span>SchemaCrawler Web Application, version 16.28.3-1</span><br />
1212
&copy;
1313
<span property="dc:dateCopyrighted">2000-2025</span>
1414
<span property="dc:creator">Sualeh Fatehi &lt;sualeh@hotmail.com&gt;.</span>

0 commit comments

Comments
 (0)