Skip to content

Commit

Permalink
a6.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mararsh committed Jul 31, 2024
1 parent e4b0922 commit ebd7cd9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion alpha/MyBox/nb-configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Any value defined here will override the pom.xml file value but is only applicab
-->
<netbeans.compile.on.save>none</netbeans.compile.on.save>
<org-netbeans-modules-javascript2-requirejs.enabled>true</org-netbeans-modules-javascript2-requirejs.enabled>
<netbeans.hint.jdkPlatform>JDK_21</netbeans.hint.jdkPlatform>
<netbeans.hint.jdkPlatform>JDK_22</netbeans.hint.jdkPlatform>
</properties>
</project-shared-configuration>
28 changes: 14 additions & 14 deletions alpha/MyBox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

<groupId>mara</groupId>
<artifactId>MyBox</artifactId>
<version>6.8.1</version>
<version>6.8.2</version>
<packaging>jar</packaging>
<name>MyBox</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mainClass>mara.mybox.MyBox</mainClass>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>22</maven.compiler.source>
<maven.compiler.target>22</maven.compiler.target>
</properties>

<organization>
Expand All @@ -23,43 +23,43 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>21-ea+5</version>
<version>22.0.2</version>
<classifier>${platform}</classifier>
</dependency>
<dependency>
Expand Down Expand Up @@ -165,7 +165,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.25.0</version>
<version>1.26.0</version>
</dependency>
<dependency>
<groupId>org.tukaani</groupId>
Expand Down Expand Up @@ -323,7 +323,7 @@
<id>win</id>
<properties>
<platform>win</platform>
<javaVersion>21</javaVersion>
<javaVersion>22</javaVersion>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
Expand All @@ -333,7 +333,7 @@
<id>linux</id>
<properties>
<platform>linux</platform>
<javaVersion>21</javaVersion>
<javaVersion>22</javaVersion>
</properties>
<activation>
<activeByDefault>false</activeByDefault>
Expand All @@ -343,7 +343,7 @@
<id>mac</id>
<properties>
<platform>mac</platform>
<javaVersion>21</javaVersion>
<javaVersion>22</javaVersion>
</properties>
<activation>
<activeByDefault>false</activeByDefault>
Expand Down
6 changes: 3 additions & 3 deletions alpha/MyBox/src/main/java/mara/mybox/value/AppValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
*/
public class AppValues {

public static final boolean Alpha = false;
public static final String AppVersion = "6.8.1";
public static final String AppVersionDate = "2024-5-18";
public static final boolean Alpha = true;
public static final String AppVersion = "6.8.2";
public static final String AppVersionDate = "2024-11-30";
public static final String AppDerbyUser = "mara";
public static final String AppDerbyPassword = "mybox";
public static final int AppYear = 2024;
Expand Down

0 comments on commit ebd7cd9

Please sign in to comment.