Skip to content

Commit a4ed7d8

Browse files
committed
POM: fix version format, put non-test dependency before test dependencies
1 parent 5735964 commit a4ed7d8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
<groupId>ch.jalu</groupId>
88
<artifactId>typeresolver</artifactId>
9-
<version>0.1-SNAPSHOT</version>
9+
<version>0.1.0-SNAPSHOT</version>
1010

1111
<name>JavaTypeResolver</name>
12-
<description>Utility for resolving generic types and general reflective operations on types</description>
12+
<description>Utility for resolving generic types and for reflective operations on types</description>
1313
<url>https://github.com/ljacqu/JavaTypeResolver</url>
1414

1515
<scm>
@@ -154,6 +154,13 @@
154154
</build>
155155

156156
<dependencies>
157+
<dependency>
158+
<groupId>org.jetbrains</groupId>
159+
<artifactId>annotations</artifactId>
160+
<version>24.0.1</version>
161+
<scope>provided</scope>
162+
</dependency>
163+
157164
<dependency>
158165
<groupId>org.junit.jupiter</groupId>
159166
<artifactId>junit-jupiter</artifactId>
@@ -166,12 +173,5 @@
166173
<version>2.2</version>
167174
<scope>test</scope>
168175
</dependency>
169-
170-
<dependency>
171-
<groupId>org.jetbrains</groupId>
172-
<artifactId>annotations</artifactId>
173-
<version>24.0.1</version>
174-
<scope>provided</scope>
175-
</dependency>
176176
</dependencies>
177177
</project>

0 commit comments

Comments
 (0)