Skip to content

Commit 374b4c2

Browse files
authored
Merge pull request #10 from schemacrawler/distrib
Update distribution
2 parents bd223dc + c63bd4e commit 374b4c2

File tree

3 files changed

+7
-34
lines changed

3 files changed

+7
-34
lines changed

.github/workflows/quick-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
--batch-mode \
6060
clean package
6161
62-
- id: upload-extra-lib
63-
name: Upload extra lib
62+
- id: upload-aichat-lib
63+
name: Upload SchemaCrawler AI extra lib
6464
uses: actions/upload-artifact@v4
6565
with:
66-
name: extra-libs
67-
path: ./target/_extra-lib
66+
name: aichat-extra-lib
67+
path: ./target/_aichat
6868
retention-days: 5

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,8 @@ jobs:
5858
draft: false
5959
prerelease: false
6060
body: |
61-
SchemaCrawler ${{ github.event.release.tag_name }} release at last commit ${{ github.sha }}
62-
See the change history at https://www.schemacrawler.com/changes-report.html
61+
SchemaCrawler AI ${{ github.event.release.tag_name }} release at last commit ${{ github.sha }}
6362
generate_release_notes: true
64-
files: ./target/_extra-lib.zip
6563

6664
# PUBLISH TO CENTRAL REPOSITORY
6765
- id: install-secret-key

pom.xml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@
66
<groupId>us.fatehi</groupId>
77
<artifactId>schemacrawler-parent</artifactId>
88
<version>16.24.2</version>
9-
<relativePath/>
109
</parent>
1110
<artifactId>schemacrawler-ai</artifactId>
1211
<packaging>jar</packaging>
1312
<name>SchemaCrawler AI</name>
1413
<description>Integrates SchemaCrawler with AI chat services.</description>
1514
<properties>
1615
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18-
<docker.skip>true</docker.skip>
1916
<java.version>21</java.version>
2017
</properties>
2118

@@ -99,27 +96,6 @@
9996
<build>
10097
<plugins>
10198
<plugin>
102-
<groupId>org.apache.maven.plugins</groupId>
103-
<artifactId>maven-toolchains-plugin</artifactId>
104-
<version>3.2.0</version>
105-
<executions>
106-
<execution>
107-
<goals>
108-
<goal>toolchain</goal>
109-
</goals>
110-
</execution>
111-
</executions>
112-
<configuration>
113-
<toolchains>
114-
<jdk>
115-
<version>21</version>
116-
<vendor>temurin</vendor>
117-
</jdk>
118-
</toolchains>
119-
</configuration>
120-
</plugin>
121-
<plugin>
122-
<inherited>true</inherited>
12399
<groupId>org.apache.maven.plugins</groupId>
124100
<artifactId>maven-compiler-plugin</artifactId>
125101
<configuration>
@@ -140,7 +116,7 @@
140116
</goals>
141117
<configuration>
142118
<source>21</source>
143-
<doctitle>SchemaCrawler AI ${project.version}</doctitle>
119+
<doctitle>SchemaCrawler AI ${project.version}</doctitle>
144120
</configuration>
145121
</execution>
146122
</executions>
@@ -154,10 +130,9 @@
154130
</descriptors>
155131
<formats>
156132
<format>dir</format>
157-
<format>zip</format>
158133
</formats>
159134
<appendAssemblyId>false</appendAssemblyId>
160-
<finalName>_extra-lib</finalName>
135+
<finalName>_aichat/lib</finalName>
161136
</configuration>
162137
<executions>
163138
<execution>

0 commit comments

Comments
 (0)