Skip to content

Commit 649ca9c

Browse files
authored
Merge pull request #727 from apache/Fix_get_file_bytes
Cleanup read and write bytes in test & pom improvements
2 parents f5d261a + 1f32cc8 commit 649ca9c

29 files changed

Lines changed: 761 additions & 741 deletions

.github/workflows/javadoc.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
contents: write
2121

2222
steps:
23-
- name: Checkout Code at Specified Tag
23+
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
2424
uses: actions/checkout@v5
2525
with:
2626
ref: ${{ github.event.inputs.tag_ref }} # from manual trigger input
@@ -31,7 +31,10 @@ jobs:
3131
with:
3232
java-version: '25'
3333
distribution: 'temurin'
34+
java-package: jdk
35+
architecture: x64
3436
cache: 'maven'
37+
overwrite-settings: true # ensures the runner's .m2/settings.xml is current
3538

3639
- name: Build and Generate Javadoc # POM is configured to output to target/site/apidocs
3740
run: mvn clean javadoc:javadoc

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ local/
5050
reports/
5151
.pmd
5252
tmp/
53+
*.txt
5354

5455
# Build artifacts
5556
target/
@@ -70,4 +71,5 @@ _*
7071
_*/
7172

7273
# Sketch binary test files
73-
*.sk
74+
*.sk
75+
/tools/genCPPcrossLangFiles.sh

.mvn/maven.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# suppresses the warning:
22
# Direct modification of testCompileSourceRoots through add() is deprecated and will not work in Maven 4.0.0. Please use the add/remove methods instead.
33
# If you're using a plugin that causes this warning, please upgrade to the latest version and report an issue if the warning persists.
4-
# To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file,
5-
# or in project POM properties.
4+
# To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line or in the .mvn/maven.config file.
65
-Dmaven.project.sourceRoots.warningsDisabled=true

0 commit comments

Comments
 (0)