Skip to content

Commit

Permalink
Release v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrice V committed Sep 18, 2020
1 parent 4e9f94c commit b49cee8
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
- name: Package jar with Gradle
run: ./gradlew shadowJar
- name: Run validator on MBTA data
run: java -jar application/cli-app/build/libs/gtfs-validator-v1.2.2-SNAPSHOT.jar -u https://transitfeeds.com/p/mbta/64/20200531/download -i input.zip -e input -o output -abort_on_error false
run: java -jar application/cli-app/build/libs/gtfs-validator-v1.2.2.jar -u https://transitfeeds.com/p/mbta/64/20200531/download -i input.zip -e input -o output -abort_on_error false
- name: Generate javadoc
run: ./gradlew aggregateJavadocs
- name: Persist jar
uses: actions/upload-artifact@v2
with:
name: v1.2.2-SNAPSHOT
path: application/cli-app/build/libs/gtfs-validator-v1.2.2-SNAPSHOT.jar
name: v1.2.2
path: application/cli-app/build/libs/gtfs-validator-v1.2.2.jar
- name: Persist test report
uses: actions/upload-artifact@v2
with:
name: v1.2.2-SNAPSHOT_tests
name: v1.2.2_tests
path: build/reports/allTests/
- name: Persist javadoc
uses: actions/upload-artifact@v2
with:
name: v1.2.2-SNAPSHOT_javadoc
name: v1.2.2_javadoc
path: build/docs/javadoc/
2 changes: 1 addition & 1 deletion adapter/exporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/protos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/tree/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/validator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion application/cli-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

jar {
// Add the manifest within the JAR, using gtfs-validator as the title
Expand Down
2 changes: 1 addition & 1 deletion config/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion usecase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.2-SNAPSHOT'
version '1.2.2'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down

0 comments on commit b49cee8

Please sign in to comment.