Skip to content

Commit e322d8a

Browse files
committed
minor updates to maven
1 parent f3c52d4 commit e322d8a

File tree

2 files changed

+20
-22
lines changed

2 files changed

+20
-22
lines changed

jitpack.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
jdk:
2+
- openjdk21
3+
before_install:
4+
- sdk install java 21-open
5+
- sdk use java 21-open

pom.xml

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
<version>0.2.2-SNAPSHOT</version>
66
<packaging>jar</packaging>
77
<properties>
8-
<maven.compiler.source>1.8</maven.compiler.source>
9-
<maven.compiler.target>1.8</maven.compiler.target>
8+
<maven.compiler.source>21</maven.compiler.source>
9+
<maven.compiler.target>21</maven.compiler.target>
10+
<maven.compiler.release>21</maven.compiler.release>
1011
<encoding>UTF-8</encoding>
1112
</properties>
1213
<licenses>
@@ -18,18 +19,16 @@
1819
</license>
1920
</licenses>
2021
<scm>
21-
<connection>scm:git:[email protected]:lemire/JavaFastPFOR.git</connection>
22-
<url>scm:git:[email protected]:lemire/JavaFastPFOR.git</url>
23-
<developerConnection>scm:git:[email protected]:lemire/JavaFastPFOR.git</developerConnection>
22+
<connection>scm:git:[email protected]:fastpack/JavaFastPFOR.git</connection>
23+
<url>scm:git:[email protected]:fastpack/JavaFastPFOR.git</url>
24+
<developerConnection>scm:git:[email protected]:fastpack/JavaFastPFOR.git</developerConnection>
2425
</scm>
2526
<developers>
2627
<developer>
2728
<id>lemire</id>
2829
<name>Daniel Lemire</name>
29-
<email>[email protected]</email>
30+
<email>[email protected]</email>
3031
<url>http://lemire.me/en/</url>
31-
<organization>LICEF Research Center</organization>
32-
<organizationUrl>http://licef.ca</organizationUrl>
3332
<roles>
3433
<role>architect</role>
3534
<role>developer</role>
@@ -57,22 +56,17 @@
5756
</dependencies>
5857
<issueManagement>
5958
<system>GitHub Issue Tracking</system>
60-
<url>https://github.com/lemire/JavaFastPFOR/issues</url>
59+
<url>https://github.com/fastpack/JavaFastPFOR/issues</url>
6160
</issueManagement>
62-
<parent>
63-
<groupId>org.sonatype.oss</groupId>
64-
<artifactId>oss-parent</artifactId>
65-
<version>9</version>
66-
</parent>
6761
<build>
6862
<plugins>
6963
<plugin>
7064
<groupId>org.apache.maven.plugins</groupId>
7165
<artifactId>maven-compiler-plugin</artifactId>
7266
<version>3.12.1</version>
7367
<configuration>
74-
<source>17</source>
75-
<target>17</target>
68+
<source>21</source>
69+
<target>21</target>
7670
</configuration>
7771
<executions>
7872
<execution>
@@ -88,15 +82,15 @@
8882
</excludes>
8983
</configuration>
9084
</execution>
91-
<!-- The vector module will be enabled when JDK19+ is LTE, currently only for advanced users. -->
85+
<!-- The vector module is experimental, currently only for advanced users. -->
9286
<!--<execution>
9387
<id>vector-fastpfor</id>
9488
<phase>compile</phase>
9589
<goals>
9690
<goal>compile</goal>
9791
</goals>
9892
<configuration>
99-
<release>19</release>
93+
<release>29</release>
10094
</configuration>
10195
</execution> -->
10296
</executions>
@@ -233,9 +227,8 @@
233227
</pluginManagement>
234228
</build>
235229
<name>JavaFastPFOR</name>
236-
<url>https://github.com/lemire/JavaFastPFOR/</url>
230+
<url>https://github.com/fastpack/JavaFastPFOR/</url>
237231
<description>
238-
It is a library to compress and uncompress arrays of integers
239-
very fast. The assumption is that most (but not all) values in
240-
your array use less than 32 bits. </description>
232+
A library to compress and uncompress arrays of integers
233+
very quickly. </description>
241234
</project>

0 commit comments

Comments
 (0)