Skip to content

Commit 7e9cf11

Browse files
author
geompokon@csd.auth.gr
committed
move interesting info higher in pom
1 parent da0ec88 commit 7e9cf11

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

pom.xml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,6 @@
1414
<url>https://github.com/Abductcows/java-bit-array</url>
1515
<inceptionYear>2021</inceptionYear>
1616

17-
<properties>
18-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19-
20-
<kotlin.version>1.6.10</kotlin.version>
21-
<maven.compiler.source>11</maven.compiler.source>
22-
<maven.compiler.target>11</maven.compiler.target>
23-
24-
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
25-
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
26-
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
27-
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
28-
29-
<jsr305.version>3.0.2</jsr305.version>
30-
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
31-
32-
<junit5.version>5.8.2</junit5.version>
33-
<assertj-core.version>3.21.0</assertj-core.version>
34-
</properties>
35-
36-
<distributionManagement>
37-
<snapshotRepository>
38-
<id>ossrh</id>
39-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
40-
</snapshotRepository>
41-
<repository>
42-
<id>ossrh</id>
43-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44-
</repository>
45-
</distributionManagement>
46-
4717
<dependencies>
4818
<!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 -->
4919
<dependency>
@@ -52,7 +22,6 @@
5222
<version>${jsr305.version}</version>
5323
<scope>compile</scope>
5424
</dependency>
55-
5625
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
5726
<dependency>
5827
<groupId>org.jetbrains</groupId>
@@ -110,7 +79,7 @@
11079
</executions>
11180
</plugin>
11281

113-
<!-- Jar plugin -->
82+
<!-- Jar -->
11483
<plugin>
11584
<groupId>org.apache.maven.plugins</groupId>
11685
<artifactId>maven-jar-plugin</artifactId>
@@ -187,6 +156,23 @@
187156
</license>
188157
</licenses>
189158

159+
<scm>
160+
<connection>scm:git:git://github.com/Abductcows/java-bit-array.git</connection>
161+
<developerConnection>no</developerConnection>
162+
<url>https://github.com/Abductcows/java-bit-array/tree/master/</url>
163+
</scm>
164+
165+
<distributionManagement>
166+
<snapshotRepository>
167+
<id>ossrh</id>
168+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
169+
</snapshotRepository>
170+
<repository>
171+
<id>ossrh</id>
172+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
173+
</repository>
174+
</distributionManagement>
175+
190176
<developers>
191177
<developer>
192178
<name>George Bouroutzoglou</name>
@@ -197,9 +183,23 @@
197183
</developer>
198184
</developers>
199185

200-
<scm>
201-
<connection>scm:git:git://github.com/Abductcows/java-bit-array.git</connection>
202-
<developerConnection>no</developerConnection>
203-
<url>https://github.com/Abductcows/java-bit-array/tree/master/</url>
204-
</scm>
186+
<properties>
187+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
188+
189+
<kotlin.version>1.6.10</kotlin.version>
190+
<maven.compiler.source>11</maven.compiler.source>
191+
<maven.compiler.target>11</maven.compiler.target>
192+
193+
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
194+
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
195+
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
196+
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
197+
198+
<jsr305.version>3.0.2</jsr305.version>
199+
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
200+
201+
<junit5.version>5.8.2</junit5.version>
202+
<assertj-core.version>3.21.0</assertj-core.version>
203+
</properties>
204+
205205
</project>

0 commit comments

Comments
 (0)