Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into j2735/conform-to-2020-…
Browse files Browse the repository at this point in the history
…standard
  • Loading branch information
drewjj committed Jan 15, 2024
2 parents 9548148 + f14a82d commit ea6d468
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 96 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: "11"
java-version: "21"
distribution: "temurin"
- name: Run Sonar
env:
Expand Down
16 changes: 16 additions & 0 deletions docs/Release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
JPO-ODE Release Notes
----------------------------

Version 1.5.0, released November 2023
----------------------------------------

### **Summary**
The updates for the jpo-ode 1.5.0 release include CI configuration fixes, README updates and updated submodule references.
- Fixed CI configuration command parameters.
- Added README note for Windows users on the shared volume environment variable.
- Updated submodule references
- The supported operating systems in the README have been updated to more recent versions.
- Updated all references to the test package from org.junit.Test to org.junit.jupiter.api.Test. Some tests are also updated to remove deprecated annotations.
- Introduced changes that enable the ODE to establish communication with RSUs using both the NTCIP1218 protocol and the 4.1 DSRC protocol.

Known Issues:
- No known issues at this time.


Version 1.4.0, released July 5th 2023
----------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
public class NodeSetXY extends Asn1Object {
private static final long serialVersionUID = 1L;

@JsonProperty("NodeXY")
private NodeXY[] NodeXY;


@JsonProperty("NodeXY")
public NodeXY[] getNodeXY() {
return NodeXY;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
public class Nodes extends Asn1Object {

private static final long serialVersionUID = 1L;
@JsonProperty("NodeLL")
private NodeLL[] nodeLL;

@JsonProperty("NodeXY")
private NodeXY[] nodeXY;


@JsonProperty("NodeLL")
public NodeLL[] getNodeLL() {
return nodeLL;
}
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion jpo-s3-deposit
2 changes: 1 addition & 1 deletion jpo-security-svcs
Submodule jpo-security-svcs updated 0 files
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<sonar.organization>usdot-jpo-ode</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<!-- JaCoCo Properties -->
<jacoco.version>0.8.8</jacoco.version>
<jacoco.version>0.8.11</jacoco.version>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
Expand Down Expand Up @@ -116,7 +116,7 @@
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.9.0.2155</version>
<version>3.10.0.2594</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit ea6d468

Please sign in to comment.