Skip to content

Commit

Permalink
clean(reader-gtfs): exclude unused transient libs
Browse files Browse the repository at this point in the history
  • Loading branch information
kschrab committed Dec 4, 2024
1 parent c5ee210 commit a775e6f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ reader-gtfs:
* com.google.guava:guava (Apache license)
* com.opencsv:opencsv (Apache license)
* commons-io:commons-io (Apache license)
* org.apache.commons:commons-lang3 (Apache license)
* org.mapdb:mapdb (Apache license)

tools:
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,26 @@
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.9</version>
<exclusions>
<!-- Following dependencies are only required for bean mapping -->
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down

0 comments on commit a775e6f

Please sign in to comment.