Compare commits

8 Commits

Author SHA1 Message Date
54364b2d8d Merge pull request 'v0.0.5' (#5) from dev into master
Reviewed-on: #5
2026-05-11 08:15:45 +00:00
Timi
32455d1641 v0.0.5
All checks were successful
CI/CD / build-deploy (pull_request) Successful in 12s
2026-05-11 16:15:23 +08:00
a17e75421e Merge pull request 'v0.0.4' (#4) from dev into master
Reviewed-on: #4
2026-05-11 06:18:47 +00:00
Timi
0d4e7379fb v0.0.4
All checks were successful
CI/CD / build-deploy (pull_request) Successful in 12s
2026-05-11 14:16:09 +08:00
39ef53d79e Merge pull request 'v0.0.3' (#3) from dev into master
Reviewed-on: #3
2026-05-10 09:23:44 +00:00
Timi
3d553fd003 v0.0.3
All checks were successful
CI/CD / build-deploy (pull_request) Successful in 2m28s
2026-05-10 17:12:05 +08:00
b991624172 Merge pull request 'v0.0.3' (#2) from dev into master
Reviewed-on: #2
2026-05-10 08:49:08 +00:00
Timi
f0905f4aa2 v0.0.3
Some checks failed
CI/CD / build-deploy (pull_request) Failing after 1s
2026-05-10 16:48:18 +08:00
3 changed files with 29 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: act_runner_java
if: ${{ github.event.pull_request.merged == true }}
env:
JAVA_HOME: /usr/lib/jvm/java-21-openjdk
JAVA_HOME: /usr/lib/jvm/java-25-openjdk
steps:
- name: Checkout code
run: |

2
.gitignore vendored
View File

@@ -1,4 +1,4 @@
/.claude
/.serena
/CLAUDE.md
/AGENTS.md

32
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.imyeyu.fx</groupId>
<artifactId>timi-fx</artifactId>
<version>0.0.3</version>
<version>0.0.5</version>
<properties>
<fx.version>25.0.3</fx.version>
@@ -18,15 +18,32 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.46</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<version>3.1.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.projectlombok</groupId>
@@ -50,14 +67,14 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
<version>1.18.46</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<version>3.12.0</version>
<configuration>
<sourcepath>${project.build.directory}/delombok</sourcepath>
<encoding>UTF-8</encoding>
@@ -105,5 +122,10 @@
<version>0.0.3</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.46</version>
</dependency>
</dependencies>
</project>