You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use gradle to build intellij plugin and use localPath config like this:
intellij {
localPath 'D:\Program Files\JetBrains\PyCharm Community Edition 2018.3'
}
The gradle always download the java-compiler-ant-tasks-LATEST-EAP-SNAPSHOT.jar, not the specific version such as java-compiler-ant-tasks-192.5728.105.jar.
How can let gradle do not download the latest version ? My maven reposity is in my compony network which can not connect the internet, and I can only put specific version like java-compiler-ant-tasks-192.5728.105.jar in my maven repository, because the maven repository only accepte release version.
Thanks
The text was updated successfully, but these errors were encountered:
@zolotov sorry, the version number in my question is just an example. Actually, I use 2019.2 not 2018.3
intellij {
localPath 'D:\Program Files\JetBrains\PyCharm Community Edition 2019.2'
}
And the question is : the gradle always download the java-compiler-ant-tasks-LATEST-EAP-SNAPSHOT.jar, not the specific version such as java-compiler-ant-tasks-192.5728.105.jar
When I use config like this:
intellij {
version 'PC-2019.2'
type 'PC'
}
the gradle will download the java-compiler-ant-tasks-192.5728.105.jar
So why this two kind of config download different jar ? Thanks
When I use gradle to build intellij plugin and use localPath config like this:
intellij {
localPath 'D:\Program Files\JetBrains\PyCharm Community Edition 2018.3'
}
The gradle always download the java-compiler-ant-tasks-LATEST-EAP-SNAPSHOT.jar, not the specific version such as java-compiler-ant-tasks-192.5728.105.jar.
How can let gradle do not download the latest version ? My maven reposity is in my compony network which can not connect the internet, and I can only put specific version like java-compiler-ant-tasks-192.5728.105.jar in my maven repository, because the maven repository only accepte release version.
Thanks
The text was updated successfully, but these errors were encountered: