IntelliJ project configuration: add commons-cli as transitive dependency of gant-groovy library

...instead of adding it to individual modules which depend on gant-groovy library. This also includes commons-cli to dependencies of intellij.tools.jps.buildScriptDependencies module so we won't need to manually add it in setupBuildScriptsDeps.gradle.

GitOrigin-RevId: cf583a4296e81d6c4a3b92677632391b7669a62a
This commit is contained in:
nik
2019-09-05 07:01:52 +00:00
committed by intellij-monorepo-bot
parent 501c21024d
commit 01c5fa1f2a
+8 -1
View File
@@ -1,12 +1,19 @@
<component name="libraryTable">
<library name="gant-groovy" type="repository">
<properties include-transitive-deps="false" maven-id="org.codehaus.gant:gant_groovy2.3:1.9.11" />
<properties maven-id="org.codehaus.gant:gant_groovy2.3:1.9.11">
<exclude>
<dependency maven-id="org.codehaus.groovy:groovy-all" />
<dependency maven-id="org.apache.ant:ant" />
</exclude>
</properties>
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/codehaus/gant/gant_groovy2.3/1.9.11/gant_groovy2.3-1.9.11.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/commons-cli/commons-cli/1.2/commons-cli-1.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/org/codehaus/gant/gant_groovy2.3/1.9.11/gant_groovy2.3-1.9.11-sources.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/commons-cli/commons-cli/1.2/commons-cli-1.2-sources.jar!/" />
</SOURCES>
</library>
</component>