Skip to content

Commit a85cd67

Browse files
authoredSep 6, 2024··
release: 24.1 (#406)
1 parent 32656de commit a85cd67

File tree

31 files changed

+43
-31
lines changed

31 files changed

+43
-31
lines changed
 

‎CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Changelog Eclipse MOSAIC 24.1 (September 2024)
2+
3+
* [M+] The file output generator is now able to print fields of the V2X message related to a V2xMessageReception interaction.
4+
* [M+] Geomath now provides a new class representing point clouds.
5+
* [A+] V2X messages can be duplicated for re-transmissions.
6+
+ [A-] Searching for road positions is now more accurate for overlapping edges.
7+
* [S+] Scenario-Convert is now able to export the database to GeoJSON files (removed shapefile export).
8+
* [T+] Now supports SUMO 1.20.0
9+
* [X-] Major clean-up of extended bundle and dependencies (Extended).
10+
* [X-] Improved synchronization of timing between PHABMACS and MOSAIC (Extended).
11+
* [X+] PHABMACS and MOSAIC 3D Visualizer now use an own 3D model format based on protobuf (Extended).
12+
113
# Changelog Eclipse MOSAIC 24.0 (March 2024)
214

315
* [A-] Renamed API method getPayLoad() to getPayload(). Needs migration of all V2xMessage extensions.

‎app/tutorials/example-applications/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../../pom.xml</relativePath>
1111
</parent>
1212

‎app/tutorials/highway-management/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../../pom.xml</relativePath>
1111
</parent>
1212

‎app/tutorials/traffic-light-communication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../../pom.xml</relativePath>
1111
</parent>
1212

‎app/tutorials/weather-warning/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../../pom.xml</relativePath>
1111
</parent>
1212

‎bundle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

‎bundle/src/assembly/resources/fed/ns3/ns3_installer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ns3_scratch="${ns3_simulator_folder}/scratch"
6969
ns3_source="${ns3_simulator_folder}/src"
7070

7171
####### semi automatic parameters ########
72-
ns3_federate_url="https://github.com/mosaic-addons/ns3-federate/archive/refs/tags/24.0.zip"
72+
ns3_federate_url="https://github.com/mosaic-addons/ns3-federate/archive/refs/tags/24.1.zip"
7373
ns3_url="https://www.nsnam.org/releases/$ns3_version_affix.tar.bz2"
7474

7575
###### more automatic parameters #########

‎bundle/src/assembly/resources/fed/omnetpp/omnet_installer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ check_shell
4646
required_programs=( unzip tar bison flex protoc gcc python )
4747
required_libraries=( "libprotobuf-dev >= 3.7.0" "libxml2-dev" )
4848

49-
omnet_federate_url="https://github.com/mosaic-addons/omnetpp-federate/archive/refs/tags/24.0.zip"
49+
omnet_federate_url="https://github.com/mosaic-addons/omnetpp-federate/archive/refs/tags/24.1.zip"
5050
omnet_src_url="https://github.com/omnetpp/omnetpp/releases/download/omnetpp-5.5.1/omnetpp-5.5.1-src-linux.tgz"
5151
inet_src_url="https://github.com/inet-framework/inet/releases/download/v4.1.1/inet-4.1.1-src.tgz"
5252

‎fed/mosaic-application/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-cell/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-environment/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-mapping/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-ns3/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-omnetpp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-output/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-sns/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎fed/mosaic-sumo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-communication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-database/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-docker/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-geomath/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-interactions/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-network/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-objects/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-routing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎lib/mosaic-utils/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.eclipse.mosaic</groupId>
77
<artifactId>mosaic-parent</artifactId>
8-
<version>24.1-SNAPSHOT</version>
8+
<version>24.1</version>
99
<packaging>pom</packaging>
1010

1111
<name>Eclipse MOSAIC Parent</name>
@@ -80,7 +80,7 @@
8080
</modules>
8181

8282
<properties>
83-
<mosaic.version>24.1-SNAPSHOT</mosaic.version>
83+
<mosaic.version>24.1</mosaic.version>
8484
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8585
<project.build.sourceTarget>11</project.build.sourceTarget>
8686
<skip.coverage>true</skip.coverage>

‎rti/mosaic-rti-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎rti/mosaic-rti-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎rti/mosaic-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

‎test/mosaic-integration-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.mosaic</groupId>
88
<artifactId>mosaic-parent</artifactId>
9-
<version>24.1-SNAPSHOT</version>
9+
<version>24.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)
Please sign in to comment.