Skip to content

Commit 7fa43b3

Browse files
committed
#14 Release 3.6 after Java 21
1 parent 8c512db commit 7fa43b3

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

BinaryInternalsViewer/src/main/java/org/binaryinternals/app/JDialogAbout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private void initComponents() {
7676
listPane.add(Box.createRigidArea(new Dimension(0, 20)));
7777
listPane.add(this.getLine("Watch binary file internals visually & interactively for the meaning of every bit"));
7878
listPane.add(Box.createRigidArea(new Dimension(0, 5)));
79-
listPane.add(this.getLine("Version: 3.5"));
79+
listPane.add(this.getLine("Version: 3.6"));
8080
listPane.add(Box.createRigidArea(new Dimension(0, 5)));
8181
listPane.add(this.getLine("Author: Amos Shi"));
8282

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Download
3030
User guide
3131

3232
* We need the `java` command to run this tool
33-
* `java -jar BinaryInternalsViewer-3.5-timestamp.jar`
33+
* `java -jar BinaryInternalsViewer-3.6-timestamp.jar`
3434
* Where `timestamp` is the auto-generated build timestamp
3535
* Menu item: `File` > `Open...`
3636
* Choose the binary file to view
@@ -41,7 +41,7 @@ Build the Source Code
4141
* Java Version: `OpenJDK version 11` or higher
4242
* Set `JAVA_HOME` environment variable
4343
* If not set use the export statements in the `build.sh` script
44-
* Build Tool: `Apache Maven 3.5` or higher: because we are using the [Maven CI Friendly Versions](https://maven.apache.org/maven-ci-friendly.html) `${revision}` feature
44+
* Build Tool: `Apache Maven 3.6` or higher: because we are using the [Maven CI Friendly Versions](https://maven.apache.org/maven-ci-friendly.html) `${revision}` feature
4545
* Build
4646
* Build via maven command
4747
* `mvn clean package install`

format-class-masstest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ find "$JAVA_FOLDER/jmods/" -iname *.jmod | while read jmodfilename; do
3434

3535
# Processing each .class file
3636
find $jmodfilename_short -iname *.class | while read classfilename; do
37-
echo "timeout 5 java -Dorg.binaryinternals.masstestmode=true -jar ../../BinaryInternalsViewer/target/BinaryInternalsViewer-3.5.jar '$classfilename'" >> masstest.cmds
37+
echo "timeout 5 java -Dorg.binaryinternals.masstestmode=true -jar ../../BinaryInternalsViewer/target/BinaryInternalsViewer-3.6.jar '$classfilename'" >> masstest.cmds
3838
done
3939

4040
# Clean up .jmod file

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141
<properties>
4242
<maven.compiler.release>11</maven.compiler.release>
4343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44-
<revision>3.5</revision>
44+
<revision>3.6</revision>
4545

46-
<buildnumber-maven-plugin.version>3.0.0</buildnumber-maven-plugin.version><!-- https://mvnrepository.com/artifact/org.codehaus.mojo/buildnumber-maven-plugin -->
47-
<git-commit-id-maven-plugin.version>5.0.0</git-commit-id-maven-plugin.version><!-- https://mvnrepository.com/artifact/io.github.git-commit-id/git-commit-id-maven-plugin -->
48-
<maven-assembly-plugin.version>3.5.0</maven-assembly-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
49-
<maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-dependency-plugin -->
46+
<buildnumber-maven-plugin.version>3.2.0</buildnumber-maven-plugin.version><!-- https://mvnrepository.com/artifact/org.codehaus.mojo/buildnumber-maven-plugin -->
47+
<git-commit-id-maven-plugin.version>6.0.0</git-commit-id-maven-plugin.version><!-- https://mvnrepository.com/artifact/io.github.git-commit-id/git-commit-id-maven-plugin -->
48+
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
49+
<maven-dependency-plugin.version>3.6.0</maven-dependency-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-dependency-plugin -->
5050
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
51-
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
52-
<maven-pmd-plugin.version>3.20.0</maven-pmd-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-pmd-plugin -->
53-
<spotbugs-maven-plugin.version>4.7.3.2</spotbugs-maven-plugin.version><!-- https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs-maven-plugin -->
51+
<maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
52+
<maven-pmd-plugin.version>3.21.0</maven-pmd-plugin.version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-pmd-plugin -->
53+
<spotbugs-maven-plugin.version>4.7.3.5</spotbugs-maven-plugin.version><!-- https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs-maven-plugin -->
5454
<spotbugs.version>4.7.3</spotbugs.version><!-- https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs-annotations -->
5555
</properties>
5656

@@ -150,12 +150,12 @@
150150
<plugin>
151151
<groupId>org.apache.maven.plugins</groupId>
152152
<artifactId>maven-checkstyle-plugin</artifactId>
153-
<version>3.2.1</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-checkstyle-plugin -->
153+
<version>3.3.0</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-checkstyle-plugin -->
154154
<dependencies>
155155
<dependency>
156156
<groupId>com.puppycrawl.tools</groupId>
157157
<artifactId>checkstyle</artifactId>
158-
<version>10.9.3</version><!-- https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle -->
158+
<version>10.12.3</version><!-- https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle -->
159159
</dependency>
160160
</dependencies>
161161
<configuration>
@@ -298,7 +298,7 @@
298298
<plugin>
299299
<groupId>org.apache.maven.plugins</groupId>
300300
<artifactId>maven-deploy-plugin</artifactId>
301-
<version>3.1.0</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-deploy-plugin -->
301+
<version>3.1.1</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-deploy-plugin -->
302302
<executions>
303303
<execution>
304304
<id>default-deploy</id>
@@ -314,7 +314,7 @@
314314
<plugin>
315315
<groupId>org.codehaus.mojo</groupId>
316316
<artifactId>flatten-maven-plugin</artifactId>
317-
<version>1.3.0</version><!-- https://mvnrepository.com/artifact/org.codehaus.mojo/flatten-maven-plugin -->
317+
<version>1.5.0</version><!-- https://mvnrepository.com/artifact/org.codehaus.mojo/flatten-maven-plugin -->
318318
<configuration>
319319
<updatePomFile>true</updatePomFile>
320320
<flattenMode>resolveCiFriendliesOnly</flattenMode>
@@ -352,7 +352,7 @@
352352
<plugin>
353353
<groupId>org.apache.maven.plugins</groupId>
354354
<artifactId>maven-project-info-reports-plugin</artifactId>
355-
<version>3.4.2</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-project-info-reports-plugin -->
355+
<version>3.4.5</version><!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-project-info-reports-plugin -->
356356
<reportSets>
357357
<reportSet>
358358
<reports><!-- select reports -->

0 commit comments

Comments
 (0)