From ed5d99eccc15a08255612ab6a9a67f2b71dd09bf Mon Sep 17 00:00:00 2001 From: zabuTNT Date: Thu, 18 Jan 2024 10:21:48 +0100 Subject: [PATCH] bump --- onebusaway-gtfs-hibernate-cli/pom.xml | 2 +- onebusaway-gtfs-hibernate/pom.xml | 2 +- onebusaway-gtfs-merge-cli/pom.xml | 2 +- onebusaway-gtfs-merge/pom.xml | 2 +- onebusaway-gtfs-transformer-cli-aws/pom.xml | 2 +- onebusaway-gtfs-transformer-cli/pom.xml | 2 +- onebusaway-gtfs-transformer/pom.xml | 4 ++-- onebusaway-gtfs/pom.xml | 2 +- .../src/main/java/org/onebusaway/gtfs/model/Route.java | 3 ++- .../src/main/java/org/onebusaway/gtfs/model/Trip.java | 3 ++- pom.xml | 2 +- 11 files changed, 14 insertions(+), 12 deletions(-) diff --git a/onebusaway-gtfs-hibernate-cli/pom.xml b/onebusaway-gtfs-hibernate-cli/pom.xml index f532fe4b..44593d59 100644 --- a/onebusaway-gtfs-hibernate-cli/pom.xml +++ b/onebusaway-gtfs-hibernate-cli/pom.xml @@ -3,7 +3,7 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 onebusaway-gtfs-hibernate-cli onebusaway-gtfs-hibernate-cli diff --git a/onebusaway-gtfs-hibernate/pom.xml b/onebusaway-gtfs-hibernate/pom.xml index abd8bf0c..7f88e245 100644 --- a/onebusaway-gtfs-hibernate/pom.xml +++ b/onebusaway-gtfs-hibernate/pom.xml @@ -9,7 +9,7 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 diff --git a/onebusaway-gtfs-merge-cli/pom.xml b/onebusaway-gtfs-merge-cli/pom.xml index b8415391..564ee015 100644 --- a/onebusaway-gtfs-merge-cli/pom.xml +++ b/onebusaway-gtfs-merge-cli/pom.xml @@ -3,7 +3,7 @@ onebusaway-gtfs-modules org.onebusaway - 1.4.15-openmove-4 + 1.4.15-openmove-5 .. onebusaway-gtfs-merge-cli diff --git a/onebusaway-gtfs-merge/pom.xml b/onebusaway-gtfs-merge/pom.xml index 2d699582..30d9eda5 100644 --- a/onebusaway-gtfs-merge/pom.xml +++ b/onebusaway-gtfs-merge/pom.xml @@ -3,7 +3,7 @@ onebusaway-gtfs-modules org.onebusaway - 1.4.15-openmove-4 + 1.4.15-openmove-5 .. onebusaway-gtfs-merge diff --git a/onebusaway-gtfs-transformer-cli-aws/pom.xml b/onebusaway-gtfs-transformer-cli-aws/pom.xml index 348a9a1c..b5c96050 100644 --- a/onebusaway-gtfs-transformer-cli-aws/pom.xml +++ b/onebusaway-gtfs-transformer-cli-aws/pom.xml @@ -9,7 +9,7 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 diff --git a/onebusaway-gtfs-transformer-cli/pom.xml b/onebusaway-gtfs-transformer-cli/pom.xml index 76461f78..1cf1248d 100644 --- a/onebusaway-gtfs-transformer-cli/pom.xml +++ b/onebusaway-gtfs-transformer-cli/pom.xml @@ -9,7 +9,7 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 diff --git a/onebusaway-gtfs-transformer/pom.xml b/onebusaway-gtfs-transformer/pom.xml index f4d86abd..1f2a7349 100644 --- a/onebusaway-gtfs-transformer/pom.xml +++ b/onebusaway-gtfs-transformer/pom.xml @@ -9,14 +9,14 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 org.onebusaway onebusaway-gtfs - 1.4.15-openmove-4 + 1.4.15-openmove-5 org.onebusaway diff --git a/onebusaway-gtfs/pom.xml b/onebusaway-gtfs/pom.xml index 9a0e952d..ebeb4b2b 100644 --- a/onebusaway-gtfs/pom.xml +++ b/onebusaway-gtfs/pom.xml @@ -9,7 +9,7 @@ org.onebusaway onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 diff --git a/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Route.java b/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Route.java index 839ac1fe..de57e352 100644 --- a/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Route.java +++ b/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Route.java @@ -81,7 +81,8 @@ public final class Route extends IdentityBean { @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() { diff --git a/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Trip.java b/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Trip.java index 54d05fe9..e29e9d31 100644 --- a/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Trip.java +++ b/onebusaway-gtfs/src/main/java/org/onebusaway/gtfs/model/Trip.java @@ -124,7 +124,8 @@ public final class Trip extends IdentityBean { @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; diff --git a/pom.xml b/pom.xml index bff662ea..a9183dbf 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ onebusaway-gtfs-modules - 1.4.15-openmove-4 + 1.4.15-openmove-5 pom onebusaway-gtfs-modules