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

add simwrapper from 16.x snapshot #48

Merged
merged 5 commits into from
May 8, 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
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<groupId>org.matsim</groupId>
<artifactId>matsim-all</artifactId>

<!-- Options: stable build based on pull requests (e.g. 16.0-PR2778), weekly (e.g. 15.0-2023w01) or official (e.g. 14.0) releases -->
<!-- <version>16.0-PR2509</version>-->
<version>2024.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.matsim</groupId>
<artifactId>matsim-example-project</artifactId>
<version>0.0.1-SNAPSHOT</version>

<name>MATSim example project</name>
<description>MATSim example project</description>

<properties>
<!-- Options: stable build based on pull requests (e.g. 15.0-PR2344), weekly (e.g. 15.0-2023w01) or official (e.g. 14.0) releases -->
<!-- <matsim.version>16.0-PR2509</matsim.version>-->
<matsim.version>2024.0</matsim.version>

<!-- Don't change version here, but in the parent section above! -->
<matsim.version>${parent.version}</matsim.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -132,6 +140,11 @@
<artifactId>application</artifactId>
<version>${matsim.version}</version>
</dependency>
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>simwrapper</artifactId>
<version>${matsim.version}</version>
</dependency>
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>vsp</artifactId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/matsim/project/RunMatsimApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ protected void prepareControler(Controler controler) {
// possibly modify controler here

// controler.addOverridingModule( new OTFVisLiveModule() ) ;
// controler.addOverridingModule( new SimWrapperModule() ) ;


// ---
Expand Down
Binary file not shown.
Loading