Files
osmosis/osmosis-tagtransform/build.gradle
Taylor Smock b1bad7762c Update Gradle from 4.10 to 6.9.2
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>
2022-04-04 09:27:07 -06:00

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