File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
src/main/java/io/github/abductcows/bitarray Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 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< Boolean> </description >
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>
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
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 >
Original file line number Diff line number Diff line change 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
5555public final class BitArray extends AbstractList <Boolean > implements RandomAccess , Cloneable {
You can’t perform that action at this time.
0 commit comments