Skip to content

Commit ae1441e

Browse files
committed
Auto Update
1 parent dbdd726 commit ae1441e

298 files changed

Lines changed: 38556 additions & 736 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cb92c86c822e25248245c897aa09236dee4b6a75
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.github.andrestubbe</groupId>
6+
<artifactId>FastCore</artifactId>
7+
<version>0.1.0</version>
8+
<name>fastcore</name>
9+
<description>FastJava Core - Unified JNI loader and platform abstraction for all FastJava modules</description>
10+
<url>https://github.com/andrestubbe/${project.name}</url>
11+
<licenses>
12+
<license>
13+
<name>MIT License</name>
14+
<url>https://opensource.org/licenses/MIT</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<scm>
19+
<connection>scm:git:git://github.com/andrestubbe/${project.name}.git</connection>
20+
<developerConnection>scm:git:ssh://github.com:andrestubbe/${project.name}.git</developerConnection>
21+
<url>https://github.com/andrestubbe/${project.name}/tree/main</url>
22+
</scm>
23+
<distributionManagement>
24+
<repository>
25+
<id>central</id>
26+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
27+
</repository>
28+
<snapshotRepository>
29+
<id>central</id>
30+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
31+
</snapshotRepository>
32+
</distributionManagement>
33+
<properties>
34+
<maven.compiler.target>17</maven.compiler.target>
35+
<maven.compiler.source>17</maven.compiler.source>
36+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37+
</properties>
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<artifactId>maven-compiler-plugin</artifactId>
42+
<version>3.11.0</version>
43+
<configuration>
44+
<source>17</source>
45+
<target>17</target>
46+
</configuration>
47+
</plugin>
48+
<plugin>
49+
<artifactId>maven-jar-plugin</artifactId>
50+
<version>3.3.0</version>
51+
<configuration>
52+
<archive>
53+
<manifest>
54+
<addClasspath>true</addClasspath>
55+
</manifest>
56+
</archive>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<artifactId>maven-source-plugin</artifactId>
61+
<version>3.3.0</version>
62+
<executions>
63+
<execution>
64+
<id>attach-sources</id>
65+
<goals>
66+
<goal>jar</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-javadoc-plugin</artifactId>
73+
<version>3.5.0</version>
74+
<executions>
75+
<execution>
76+
<id>attach-javadocs</id>
77+
<goals>
78+
<goal>jar</goal>
79+
</goals>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.codehaus.mojo</groupId>
85+
<artifactId>exec-maven-plugin</artifactId>
86+
<version>3.1.0</version>
87+
<configuration>
88+
<mainClass>fastcore.FastCore</mainClass>
89+
</configuration>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
<profiles>
94+
<profile>
95+
<id>native</id>
96+
<build>
97+
<plugins>
98+
<plugin>
99+
<artifactId>maven-resources-plugin</artifactId>
100+
<version>3.3.1</version>
101+
<executions>
102+
<execution>
103+
<id>copy-native-libs</id>
104+
<phase>process-resources</phase>
105+
<goals>
106+
<goal>copy-resources</goal>
107+
</goals>
108+
<configuration>
109+
<outputDirectory>${project.build.outputDirectory}/native</outputDirectory>
110+
<resources>
111+
<resource>
112+
<directory>build</directory>
113+
<includes>
114+
<include>*.dll</include>
115+
<include>*.so</include>
116+
<include>*.dylib</include>
117+
</includes>
118+
</resource>
119+
</resources>
120+
</configuration>
121+
</execution>
122+
</executions>
123+
</plugin>
124+
</plugins>
125+
</build>
126+
</profile>
127+
<profile>
128+
<id>release</id>
129+
<build>
130+
<plugins>
131+
<plugin>
132+
<artifactId>maven-gpg-plugin</artifactId>
133+
<version>3.1.0</version>
134+
<executions>
135+
<execution>
136+
<id>sign-artifacts</id>
137+
<phase>verify</phase>
138+
<goals>
139+
<goal>sign</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
<plugin>
145+
<groupId>org.sonatype.plugins</groupId>
146+
<artifactId>nexus-staging-maven-plugin</artifactId>
147+
<version>1.6.13</version>
148+
<extensions>true</extensions>
149+
<configuration>
150+
<serverId>central</serverId>
151+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
152+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
153+
</configuration>
154+
</plugin>
155+
</plugins>
156+
</build>
157+
</profile>
158+
</profiles>
159+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bc01da09558c219c2730cd8f0c3c53aa58acd6a6
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Tue Jun 09 06:21:14 CEST 2026
3+
FastCore-0.1.0.jar>jitpack.io=
4+
FastCore-0.1.0.pom>jitpack.io=
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
03dac8f8d986a6a2f7f21fc9df903acf97854538
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.github.andrestubbe</groupId>
6+
<artifactId>FastFileIndex</artifactId>
7+
<version>0.1.0</version>
8+
<properties>
9+
<maven.compiler.target>17</maven.compiler.target>
10+
<maven.compiler.source>17</maven.compiler.source>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
</properties>
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.github.andrestubbe</groupId>
16+
<artifactId>FastCore</artifactId>
17+
<version>0.1.0</version>
18+
</dependency>
19+
</dependencies>
20+
<repositories>
21+
<repository>
22+
<id>jitpack.io</id>
23+
<url>https://jitpack.io</url>
24+
</repository>
25+
</repositories>
26+
<build>
27+
<resources>
28+
<resource>
29+
<directory>build</directory>
30+
<includes>
31+
<include>*.dll</include>
32+
</includes>
33+
</resource>
34+
<resource>
35+
<directory>src/main/resources</directory>
36+
</resource>
37+
</resources>
38+
<plugins>
39+
<plugin>
40+
<artifactId>maven-assembly-plugin</artifactId>
41+
<version>3.6.0</version>
42+
<executions>
43+
<execution>
44+
<id>make-assembly</id>
45+
<phase>package</phase>
46+
<goals>
47+
<goal>single</goal>
48+
</goals>
49+
</execution>
50+
</executions>
51+
<configuration>
52+
<descriptorRefs>
53+
<descriptorRef>jar-with-dependencies</descriptorRef>
54+
</descriptorRefs>
55+
<appendAssemblyId>false</appendAssemblyId>
56+
<finalName>${project.artifactId}-${project.version}</finalName>
57+
<archive>
58+
<manifest>
59+
<mainClass>fastfileindex.FastFileIndex</mainClass>
60+
</manifest>
61+
</archive>
62+
</configuration>
63+
</plugin>
64+
</plugins>
65+
</build>
66+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
804fb82ce5ef29a682b73228777493df88bb66e2
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Tue Jun 09 06:21:14 CEST 2026
3+
FastFileIndex-0.1.0.jar>jitpack.io=
4+
FastFileIndex-0.1.0.pom>jitpack.io=

0 commit comments

Comments
 (0)