Skip to content

Commit b92f3b7

Browse files
committed
refactor: use project properties for internal dependencies
- Replace hardcoded JUnit Jupiter version with property reference - Use project properties for group ID and version in internal dependencies - Replace hardcoded group ID with ${project.groupId} - Replace hardcoded version with ${project.version} This improves maintainability by avoiding duplicated version information. 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]>
1 parent 29a2594 commit b92f3b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

parsec-jca-java-test/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>org.junit.jupiter</groupId>
2828
<artifactId>junit-jupiter-api</artifactId>
29-
<version>5.8.0</version>
29+
<version>${junit.jupiter.version}</version>
3030
<scope>test</scope>
3131
</dependency>
3232
<dependency>
@@ -35,9 +35,9 @@
3535
<version>5.1.1</version>
3636
</dependency>
3737
<dependency>
38-
<groupId>org.parallaxsecond</groupId>
38+
<groupId>${project.groupId}</groupId>
3939
<artifactId>parsec-jca-java</artifactId>
40-
<version>1.0.0-SNAPSHOT</version>
40+
<version>${project.version}</version>
4141
<scope>test</scope>
4242
</dependency>
4343
<dependency>

0 commit comments

Comments
 (0)