Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
zabuTNT committed Jan 18, 2024
1 parent 2fb5219 commit ed5d99e
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion onebusaway-gtfs-hibernate-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>
<artifactId>onebusaway-gtfs-hibernate-cli</artifactId>
<name>onebusaway-gtfs-hibernate-cli</name>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs-hibernate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs-merge-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>onebusaway-gtfs-modules</artifactId>
<groupId>org.onebusaway</groupId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
<relativePath>..</relativePath>
</parent>
<artifactId>onebusaway-gtfs-merge-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs-merge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>onebusaway-gtfs-modules</artifactId>
<groupId>org.onebusaway</groupId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
<relativePath>..</relativePath>
</parent>
<artifactId>onebusaway-gtfs-merge</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs-transformer-cli-aws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs-transformer-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions onebusaway-gtfs-transformer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>

<dependencies>
<dependency>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</dependency>
<dependency>
<groupId>org.onebusaway</groupId>
Expand Down
2 changes: 1 addition & 1 deletion onebusaway-gtfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
</parent>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public final class Route extends IdentityBean<AgencyAndId> {
@CsvField(optional = true, name = "regional_fare_card", defaultValue = "0")
private int regionalFareCardAccepted;

@CsvField(optional = true, name = "route_booking_rule_id", mapping = EntityFieldMappingFactory.class, order = -2)
//Custom extension representing a booking rule for this route
@CsvField(optional = true, name = "booking_rule_id", mapping = EntityFieldMappingFactory.class, order = -2)
private BookingRule bookingRule;

public Route() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ public final class Trip extends IdentityBean<AgencyAndId> {
@CsvField(optional = true, name = "boarding_type")
private int boardingType;

@CsvField(optional = true, name = "trip_booking_rule_id", mapping = EntityFieldMappingFactory.class, order = -2)
//Custom extension representing a booking rule for this trip
@CsvField(optional = true, name = "booking_rule_id", mapping = EntityFieldMappingFactory.class, order = -2)
private BookingRule bookingRule;


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>

<artifactId>onebusaway-gtfs-modules</artifactId>
<version>1.4.15-openmove-4</version>
<version>1.4.15-openmove-5</version>
<packaging>pom</packaging>

<name>onebusaway-gtfs-modules</name>
Expand Down

0 comments on commit ed5d99e

Please sign in to comment.