Skip to content

Commit

Permalink
exclude antler in pom
Browse files Browse the repository at this point in the history
  • Loading branch information
tisoft committed Aug 12, 2020
1 parent 387d5f6 commit 87785d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions RSyntaxTextAreaAntlrSupport/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,14 @@ publishing {
}
}
}
pom.withXml {
Node pomNode = asNode()
pomNode.dependencies.'*'.findAll() {
it.artifactId.text() == 'antlr4'
}.each() {
it.parent().remove(it)
}
}
}
}
}
Expand Down

0 comments on commit 87785d0

Please sign in to comment.