Skip to content

Commit 1d3d639

Browse files
authored
Merge pull request #192 from mercyblitz/dev
Sync dev code
2 parents f223d36 + 8c28af9 commit 1d3d639

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
java: [ '8', '11' , '17' , '21' ]
22+
java: [ '8', '11' , '17' , '21' , '25' ]
2323
steps:
2424
- name: Checkout Source
2525
uses: actions/checkout@v4

microsphere-annotation-processor/src/test/java/io/microsphere/annotation/processor/TestAnnotation.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222

2323
import java.lang.annotation.Annotation;
2424
import java.lang.annotation.Documented;
25-
import java.lang.annotation.ElementType;
2625
import java.lang.annotation.Retention;
27-
import java.lang.annotation.RetentionPolicy;
2826
import java.lang.annotation.Target;
2927
import java.util.concurrent.TimeUnit;
3028

29+
import static java.lang.annotation.ElementType.TYPE;
30+
import static java.lang.annotation.RetentionPolicy.RUNTIME;
3131
import static java.util.concurrent.TimeUnit.DAYS;
3232

3333
/**
@@ -37,8 +37,8 @@
3737
* @see Annotation
3838
* @since 1.0.0
3939
*/
40-
@Retention(RetentionPolicy.RUNTIME)
41-
@Target(ElementType.TYPE)
40+
@Retention(RUNTIME)
41+
@Target(TYPE)
4242
@Documented
4343
public @interface TestAnnotation {
4444

microsphere-java-core/src/main/java/io/microsphere/util/ClassPathUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* <li>Locating the runtime URL of a class by name or type</li>
3636
* </ul>
3737
*
38-
* <h3>Example Usage:</h3>
38+
* <h3>Example Usage</h3>
3939
* <pre>{@code
4040
* // Get all application class paths
4141
* Set<String> classPaths = ClassPathUtils.getClassPaths();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
</scm>
5252

5353
<properties>
54-
<revision>0.1.5-SNAPSHOT</revision>
54+
<revision>0.1.6-SNAPSHOT</revision>
5555
</properties>
5656

5757
<modules>

0 commit comments

Comments
 (0)