Skip to content

Commit 2d6a45e

Browse files
author
Andre Stubbe
committed
chore: migrate demos and benchmarks to JitPack
1 parent 8cf44c8 commit 2d6a45e

4 files changed

Lines changed: 17 additions & 23 deletions

File tree

examples/Benchmark/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>io.github.andrestubbe</groupId>
8-
<artifactId>fastglob-benchmark</artifactId>
9-
<version>1.0.0</version>
7+
<groupId>com.github.andrestubbe</groupId>
8+
<artifactId>fastglob-benchmark</artifactId>
9+
<version>0.1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>
@@ -24,7 +24,7 @@
2424

2525
<dependencies>
2626
<dependency>
27-
<groupId>io.github.andrestubbe</groupId>
27+
<groupId>com.github.andrestubbe</groupId>
2828
<artifactId>fastcore</artifactId>
2929
<version>0.1.0</version>
3030
</dependency>

examples/Demo/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>io.github.andrestubbe</groupId>
8-
<artifactId>fastglob-demo</artifactId>
9-
<version>1.0.0</version>
7+
<groupId>com.github.andrestubbe</groupId>
8+
<artifactId>fastglob-demo</artifactId>
9+
<version>0.1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>
@@ -24,7 +24,7 @@
2424

2525
<dependencies>
2626
<dependency>
27-
<groupId>io.github.andrestubbe</groupId>
27+
<groupId>com.github.andrestubbe</groupId>
2828
<artifactId>fastcore</artifactId>
2929
<version>0.1.0</version>
3030
</dependency>

run-benchmark.bat

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
@echo off
2-
echo ⚡ Building Main Project...
3-
call mvn -q clean package -DskipTests
4-
if %ERRORLEVEL% NEQ 0 (
1+
@echo off
52
echo.
6-
echo Maven build failed.
3+
echo ❌ Maven build failed.
74
pause
85
exit /b %ERRORLEVEL%
96
)
10-
echo 🚀 Running Benchmark...
7+
echo 🚀 Running Benchmark...
118
call mvn -q -f examples/Benchmark/pom.xml compile
129
call java --enable-native-access=ALL-UNNAMED -cp "target\fastglob-0.1.0.jar;examples\Benchmark\target\classes" fastglob.Benchmark
13-
pause
10+
pause

run-demo.bat

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
@echo off
2-
echo ⚡ Building Main Project...
3-
call mvn -q clean package -DskipTests
4-
if %ERRORLEVEL% NEQ 0 ( pause & exit /b )
5-
echo 🚀 Running Demo...
1+
@echo off
2+
echo 🚀 Running Demo...
63
call mvn -q -f examples/Demo/pom.xml compile
74
call java --enable-native-access=ALL-UNNAMED -cp "target\fastglob-0.1.0.jar;examples\Demo\target\classes" fastglob.Demo
8-
pause
5+
pause

0 commit comments

Comments
 (0)