Skip to content

Commit

Permalink
set MATSim as "parent" dependency: fix version setting
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed May 13, 2024
1 parent da65d5c commit 3ea8277
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,49 +57,49 @@
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<!-- This is the matsim freight contrib: -->
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>freight</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<!-- This is the matsim vsp contrib: -->
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>vsp</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<!-- This is the matsim application contrib: -->
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>application</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<!-- This is the matsim small-scale-traffic-generation contrib: -->
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>small-scale-traffic-generation</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>emissions</artifactId>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
</dependency>

<!--MATSim test infrastructure. Not transitive. -->
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<type>test-jar</type>
<version>${matsim.version}</version>
<version>${project.parent.version}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 3ea8277

Please sign in to comment.