Skip to content

Commit 797c0bf

Browse files
authored
feat(core): 适配新版 maven 发布 (#954)
2 parents 36a1d60 + 6804d62 commit 797c0bf

File tree

116 files changed

+443
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+443
-374
lines changed

.github/workflows/publish-maven.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
name: Publish via Maven Central
22

33
on:
4+
# 新发布触发
45
release:
56
types: [ published ]
67

8+
# 手动触发
9+
workflow_dispatch:
10+
inputs:
11+
tag:
12+
description: 'Release tag (e.g., v1.0.0)'
13+
required: true
14+
type: string
15+
716
jobs:
817
publish-maven-central:
918
runs-on: ubuntu-latest
@@ -22,7 +31,7 @@ jobs:
2231
with:
2332
maven_profiles: 'deploy'
2433
maven_goals_phases: 'clean deploy'
25-
maven_args: '-DskipTests -Dspotbugs.skip'
34+
maven_args: "-DskipTests -Dspotbugs.skip -Dcheckstyle.skip -pl '!test/datacap-test-condor,!test/datacap-test-convert,!test/datacap-test-core,!test/datacap-test-lib,!test/datacap-test-executor,!test/datacap-test-scheduler,!test/datacap-test-fs,!test/datacap-test-driver,!test/datacap-test-parser,!test/datacap-test-plugin'"
2635
gpg_private_key: ${{ secrets.GPG_SECRET }}
2736
gpg_passphrase: ${{ secrets.GPG_PASSWORD }}
2837
nexus_username: ${{ secrets.OSSRH_USERNAME }}

client/datacap-cli/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
<parent>
77
<groupId>io.edurt.datacap</groupId>
88
<artifactId>datacap</artifactId>
9-
<version>2025.1.1</version>
9+
<version>2025.1.2</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

13+
<name>datacap-client-cli</name>
1314
<artifactId>datacap-client-cli</artifactId>
1415
<description>DataCap - cli</description>
1516

configure/etc/bin/install-plugin.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
setlocal EnableDelayedExpansion
33
set "HOME=%cd%"
4-
set "VERSION=2025.1.1
4+
set "VERSION=2025.1.2
55
set "CDN_CENTER=https://repo1.maven.org/maven2/io/edurt/datacap"
66

77
:: 检查并创建临时目录

configure/etc/bin/install-plugin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
HOME=$(pwd)
4-
VERSION=2025.1.1
4+
VERSION=2025.1.2
55
CDN_CENTER="https://repo1.maven.org/maven2/io/edurt/datacap"
66

77
install_package() {

configure/etc/conf/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
################################### Banner configure #################################
2-
app.version=2025.1.1
2+
app.version=2025.1.2
33

44
################################### Basic configure #################################
55
server.port=9096

configure/metadata.json

Lines changed: 204 additions & 204 deletions
Large diffs are not rendered by default.

convert/datacap-convert-csv/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<parent>
66
<groupId>io.edurt.datacap</groupId>
77
<artifactId>datacap</artifactId>
8-
<version>2025.1.1</version>
8+
<version>2025.1.2</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>datacap-convert-csv</name>
1314
<artifactId>datacap-convert-csv</artifactId>
1415
<description>DataCap - Convert - CSV</description>
1516

convert/datacap-convert-json/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<parent>
66
<groupId>io.edurt.datacap</groupId>
77
<artifactId>datacap</artifactId>
8-
<version>2025.1.1</version>
8+
<version>2025.1.2</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>datacap-convert-json</name>
1314
<artifactId>datacap-convert-json</artifactId>
1415
<description>DataCap - Convert for json</description>
1516

convert/datacap-convert-none/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<parent>
66
<groupId>io.edurt.datacap</groupId>
77
<artifactId>datacap</artifactId>
8-
<version>2025.1.1</version>
8+
<version>2025.1.2</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>datacap-convert-none</name>
1314
<artifactId>datacap-convert-none</artifactId>
1415
<description>DataCap - Convert - Multidimensional Arrays</description>
1516

convert/datacap-convert-spi/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<parent>
66
<groupId>io.edurt.datacap</groupId>
77
<artifactId>datacap</artifactId>
8-
<version>2025.1.1</version>
8+
<version>2025.1.2</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>datacap-convert-spi</name>
1314
<artifactId>datacap-convert-spi</artifactId>
1415
<description>DataCap - Convert spi</description>
1516

0 commit comments

Comments
 (0)