|
5 | 5 | <version>0.2.2-SNAPSHOT</version> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <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> |
10 | 11 | <encoding>UTF-8</encoding> |
11 | 12 | </properties> |
12 | 13 | <licenses> |
|
18 | 19 | </license> |
19 | 20 | </licenses> |
20 | 21 | <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> |
24 | 25 | </scm> |
25 | 26 | <developers> |
26 | 27 | <developer> |
27 | 28 | <id>lemire</id> |
28 | 29 | <name>Daniel Lemire</name> |
29 | | - |
| 30 | + |
30 | 31 | <url>http://lemire.me/en/</url> |
31 | | - <organization>LICEF Research Center</organization> |
32 | | - <organizationUrl>http://licef.ca</organizationUrl> |
33 | 32 | <roles> |
34 | 33 | <role>architect</role> |
35 | 34 | <role>developer</role> |
|
57 | 56 | </dependencies> |
58 | 57 | <issueManagement> |
59 | 58 | <system>GitHub Issue Tracking</system> |
60 | | - <url>https://github.com/lemire/JavaFastPFOR/issues</url> |
| 59 | + <url>https://github.com/fastpack/JavaFastPFOR/issues</url> |
61 | 60 | </issueManagement> |
62 | | - <parent> |
63 | | - <groupId>org.sonatype.oss</groupId> |
64 | | - <artifactId>oss-parent</artifactId> |
65 | | - <version>9</version> |
66 | | - </parent> |
67 | 61 | <build> |
68 | 62 | <plugins> |
69 | 63 | <plugin> |
70 | 64 | <groupId>org.apache.maven.plugins</groupId> |
71 | 65 | <artifactId>maven-compiler-plugin</artifactId> |
72 | 66 | <version>3.12.1</version> |
73 | 67 | <configuration> |
74 | | - <source>17</source> |
75 | | - <target>17</target> |
| 68 | + <source>21</source> |
| 69 | + <target>21</target> |
76 | 70 | </configuration> |
77 | 71 | <executions> |
78 | 72 | <execution> |
|
88 | 82 | </excludes> |
89 | 83 | </configuration> |
90 | 84 | </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. --> |
92 | 86 | <!--<execution> |
93 | 87 | <id>vector-fastpfor</id> |
94 | 88 | <phase>compile</phase> |
95 | 89 | <goals> |
96 | 90 | <goal>compile</goal> |
97 | 91 | </goals> |
98 | 92 | <configuration> |
99 | | - <release>19</release> |
| 93 | + <release>29</release> |
100 | 94 | </configuration> |
101 | 95 | </execution> --> |
102 | 96 | </executions> |
|
233 | 227 | </pluginManagement> |
234 | 228 | </build> |
235 | 229 | <name>JavaFastPFOR</name> |
236 | | - <url>https://github.com/lemire/JavaFastPFOR/</url> |
| 230 | + <url>https://github.com/fastpack/JavaFastPFOR/</url> |
237 | 231 | <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> |
241 | 234 | </project> |
0 commit comments