Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix slf4j runtime error #21

Merged
merged 4 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Error parsing trips & legs with large numbers of rows and one or more time columns with values > 24 hours ([#18](https://github.com/arup-group/gelato/issues/18))
- SLF4J runtime error/warning ([#20](https://github.com/arup-group/gelato/issues/20))

### Changed

Expand Down
2 changes: 1 addition & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.arup.cml</groupId>
<artifactId>gelato</artifactId>
<name>Gelato</name>
<version>0.0.1-alpha</version>
<version>0.0.2-alpha</version>
<description>A command-line post-processing tool to turn MATSim ABM outputs into KPI metrics</description>
<inceptionYear>2023</inceptionYear>
<licenses>
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.arup.cml</groupId>
<artifactId>gelato</artifactId>
<packaging>jar</packaging>
<version>0.0.1-alpha</version>
<version>0.0.2-alpha</version>

<name>Gelato</name>
<description>A command-line post-processing tool to turn MATSim ABM outputs into KPI metrics</description>
Expand Down Expand Up @@ -76,6 +76,19 @@
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.12</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.12</version>
</dependency>


<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;

@Command(name = "MatsimKpiGenerator", version = "0.0.1-alpha", mixinStandardHelpOptions = true)
@Command(name = "MatsimKpiGenerator", version = "0.0.2-alpha", mixinStandardHelpOptions = true)
public class MatsimKpiGenerator implements Runnable {
private static final Logger LOGGER = LogManager.getLogger(MatsimKpiGenerator.class);

Expand Down