Skip to content

Commit da0ec88

Browse files
author
geompokon@csd.auth.gr
committed
change version to 2.0.0-SNAPSHOT and extract pom properties
1 parent 0b0b85d commit da0ec88

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>io.github.abductcows</groupId>
99
<artifactId>bit-array</artifactId>
10-
<version>1.2.1-SNAPSHOT</version>
10+
<version>2.0.0-SNAPSHOT</version>
1111

1212
<name>BitArray</name>
1313
<description>Fast, bitwise operation-based RandomAccess List&lt;Boolean&gt;</description>
@@ -16,11 +16,12 @@
1616

1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19-
<kotlin.version>1.6.10</kotlin.version>
2019

20+
<kotlin.version>1.6.10</kotlin.version>
2121
<maven.compiler.source>11</maven.compiler.source>
2222
<maven.compiler.target>11</maven.compiler.target>
2323

24+
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
2425
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
2526
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
2627
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
@@ -48,7 +49,7 @@
4849
<dependency>
4950
<groupId>com.google.code.findbugs</groupId>
5051
<artifactId>jsr305</artifactId>
51-
<version>3.0.2</version>
52+
<version>${jsr305.version}</version>
5253
<scope>compile</scope>
5354
</dependency>
5455

@@ -113,7 +114,7 @@
113114
<plugin>
114115
<groupId>org.apache.maven.plugins</groupId>
115116
<artifactId>maven-jar-plugin</artifactId>
116-
<version>3.2.0</version>
117+
<version>${maven-jar-plugin.version}</version>
117118
<configuration>
118119
<archive>
119120
<addMavenDescriptor>false</addMavenDescriptor>

src/main/java/io/github/abductcows/bitarray/BitArray.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* {@link java.util.Collections.SynchronizedList SynchronizedList}
5050
* are safe to use of course.</p>
5151
*
52-
* @version 1.1.1
52+
* @version 2.0.0
5353
*/
5454
@CustomNonNullApi
5555
public final class BitArray extends AbstractList<Boolean> implements RandomAccess, Cloneable {

0 commit comments

Comments
 (0)