Merge branch 'master' of https://github.com/f4b6a3/ulid-creator
This commit is contained in:
commit
7b4abe0f9c
|
@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
Nothing unreleased.
|
||||
|
||||
## [4.1.1] - 2021-10-03
|
||||
|
||||
Regular maintenance.
|
||||
|
||||
## [4.1.0] - 2021-09-04
|
||||
|
||||
Add OSGi entries to Manifest.MF #16
|
||||
|
@ -270,7 +274,8 @@ Project created as an alternative Java implementation of [ULID spec](https://git
|
|||
- Added `LICENSE`
|
||||
- Added test cases
|
||||
|
||||
[unreleased]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-4.1.0...HEAD
|
||||
[unreleased]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-4.1.1...HEAD
|
||||
[4.1.1]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-4.1.0...ulid-creator-4.1.1
|
||||
[4.1.0]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-4.0.0...ulid-creator-4.1.0
|
||||
[4.0.0]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-3.2.0...ulid-creator-4.0.0
|
||||
[3.2.0]: https://github.com/f4b6a3/ulid-creator/compare/ulid-creator-3.1.1...ulid-creator-3.2.0
|
||||
|
|
|
@ -35,7 +35,7 @@ Add these lines to your `pom.xml`.
|
|||
<dependency>
|
||||
<groupId>com.github.f4b6a3</groupId>
|
||||
<artifactId>ulid-creator</artifactId>
|
||||
<version>4.1.0</version>
|
||||
<version>4.1.1</version>
|
||||
</dependency>
|
||||
```
|
||||
See more options in [maven.org](https://search.maven.org/artifact/com.github.f4b6a3/ulid-creator).
|
||||
|
|
|
@ -1,4 +1,2 @@
|
|||
|
||||
To execute the benchmark, run the script `./benchmark/run.sh`.
|
||||
|
||||
Sorry, there is no `run.bat` file for Windows at this time.
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
@ECHO OFF
|
||||
|
||||
REM go to the parent folder
|
||||
CD .\..
|
||||
|
||||
REM compile the parent project
|
||||
CALL mvn clean install
|
||||
|
||||
REM create a copy with the expected name
|
||||
XCOPY /Y target\ulid-creator-*-SNAPSHOT.jar target\ulid-creator-0.0.1-BENCHMARK.jar*
|
||||
|
||||
REM go to the benchmark folder
|
||||
CD benchmark
|
||||
|
||||
REM compile the benchmark project
|
||||
CALL mvn validate
|
||||
CALL mvn clean install
|
||||
|
||||
REM run the benchmark
|
||||
CALL java -jar target/benchmarks.jar
|
||||
|
||||
@ECHO ON
|
Loading…
Reference in New Issue