mirror of
https://github.com/openstreetmap/osmosis.git
synced 2026-02-01 03:43:30 +00:00
Jump to 7.x was not done due to usage of `maven` plugin. This needs to be migrated to `maven-publish`. `maven` was deprecated in Gradle 5.6, along with `uploadArchives`. Signed-off-by: Taylor Smock <tsmock@fb.com>
15 lines
461 B
Groovy
15 lines
461 B
Groovy
dependencies {
|
|
implementation project(':osmosis-core')
|
|
implementation project(':osmosis-xml')
|
|
implementation group: 'org.apache.commons', name: 'commons-csv', version: dependencyVersionCommonsCsv
|
|
|
|
testImplementation project(':osmosis-testutil')
|
|
}
|
|
|
|
/*
|
|
* Disable checkstyle.
|
|
* The tag transform plugin used to exist outside the main source tree and as a result
|
|
* doesn't comply with Osmosis coding standards.
|
|
*/
|
|
checkstyleMain.enabled = false
|