We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7fd1df commit d788036Copy full SHA for d788036
build.gradle
@@ -120,11 +120,6 @@ tasks.register('checkLegacyJava') {
120
121
classes.finalizedBy checkLegacyJava
122
123
-tasks.register('lineEndingConversion', CRLFConvert) {
124
- description = 'Convert top-level files to Windows line endings'
125
- file "$rootDir/RELEASE_NOTES.md"
126
-}
127
-
128
tasks.register('lineEndingConvCopy', CRLFConvertCopy) {
129
description = 'Convert LICENSE.txt to Windows line endings'
130
from "$rootDir/LICENSE.txt"
@@ -164,8 +159,6 @@ tasks.withType(AbstractArchiveTask).configureEach {
164
159
}
165
160
166
161
167
-build.dependsOn lineEndingConversion
168
169
162
tasks.withType(PublishToMavenRepository) { task ->
170
163
doFirst {
171
if (repository == publishing.repositories.getByName('mavenRepo')) {
buildSrc/src/main/groovy/CRLFConvert.groovy
0 commit comments