Skip to content

Commit f409709

Browse files
authored
Merge pull request #80 from BauhausLuftfahrt/3.0.0
Release 3.0.0
2 parents d2bc44e + 2a3a844 commit f409709

2 files changed

Lines changed: 23 additions & 7 deletions

File tree

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@ This extension enhances MATSim (see the project's [Website](https://www.matsim.o
77
Add the following to your maven pom.xml under `repositories`:
88
```xml
99
<repository>
10-
<id>jitpack.io</id>
11-
<url>https://jitpack.io</url>
10+
<id>eth-ivt-uam</id>
11+
<url>https://packagecloud.io/eth-ivt/uam/maven2</url>
1212
</repository>
1313
```
1414
And the following to you maven pom.xml under `dependencies` for the latest version under active development:
1515
```xml
1616
<dependency>
17-
<groupId>com.github.BauhausLuftfahrt</groupId>
18-
<artifactId>MATSim-UAM</artifactId>
19-
<version>master-SNAPSHOT</version>
17+
<groupId>net.bhl.matsim</groupId>
18+
<artifactId>matsim-uam</artifactId>
19+
<version>3.0.0</version>
2020
</dependency>
2121
```
22-
Older versions can be used by replacing the version text with any of the listed tags on [GitHub MATSim-UAM tags](https://github.com/BauhausLuftfahrt/MATSim-UAM/tags).
22+
Older versions are currently not supported.
2323

2424
## Versions and Change Log
2525

2626
### Development
27+
28+
### v3.0.0
2729
General:
2830
- Update to MATSim v12
2931
- Removal of ptSimulation config setting

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>net.bhl.matsim</groupId>
77
<artifactId>matsim-uam</artifactId>
8-
<version>2.1</version>
8+
<version>3.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<properties>
@@ -14,6 +14,13 @@
1414
<maven.compiler.source>11</maven.compiler.source>
1515
<maven.compiler.target>11</maven.compiler.target>
1616
</properties>
17+
18+
<distributionManagement>
19+
<repository>
20+
<id>packagecloud-uam</id>
21+
<url>packagecloud+https://packagecloud.io/eth-ivt/uam</url>
22+
</repository>
23+
</distributionManagement>
1724

1825
<build>
1926
<plugins>
@@ -31,6 +38,13 @@
3138
</configuration>
3239
</plugin>
3340
</plugins>
41+
<extensions>
42+
<extension>
43+
<groupId>io.packagecloud.maven.wagon</groupId>
44+
<artifactId>maven-packagecloud-wagon</artifactId>
45+
<version>0.0.6</version>
46+
</extension>
47+
</extensions>
3448
</build>
3549

3650
<repositories>

0 commit comments

Comments
 (0)