2 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

19
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.imyeyu.fx</groupId> <groupId>com.imyeyu.fx</groupId>
<artifactId>timi-fx</artifactId> <artifactId>timi-fx</artifactId>
<version>0.0.4</version> <version>0.0.5</version>
<properties> <properties>
<fx.version>25.0.3</fx.version> <fx.version>25.0.3</fx.version>
@@ -18,6 +18,23 @@
<build> <build>
<plugins> <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> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>