ebarboni commented on PR #5939:
URL: https://github.com/apache/netbeans/pull/5939#issuecomment-1545831125
in nbbuild/build.xml
```
<target name="download-all-extbins" unless="ext.binaries.downloaded"
depends="bootstrap">
<echo>Downloading external binaries (*/external/ directories)...</echo>
<!-- optionnal reporttofile used to speed resolving artefacts resolution
for maven artefacts -->
<downloadbinaries cache="${binaries.cache}" server="${binaries.server}"
repos="${binaries.repos}" >
<manifest dir="${nb_all}">
<include name="**/external/binaries-list"/>
<include name="**/external/binariesembedded-list"/>
</manifest>
</downloadbinaries>
<property name="ext.binaries.downloaded" value="true"/>
</target>
```
this task is the one used mostly during build => may be hacked too but have
to understand it first ;D
```
<target name="download-selected-extbins" unless="ext.binaries.downloaded"
depends="init-module-list">
<echo>Downloading external binaries (*/external/ directories) for
cluster.config=${cluster.config}...</echo>
<pathconvert property="modules.binaries-list" pathsep=",">
<path>
<dirset dir="${nb_all}" includes="nbbuild,${allmodules}"/>
</path>
<map from="${nb_all}/" to=""/>
<globmapper from="*" to="*/external/binaries-list"/>
</pathconvert>
<downloadbinaries cache="${binaries.cache}" server="${binaries.server}"
repos="${binaries.repos}">
<manifest dir="${nb_all}" includes="${modules.binaries-list}"/>
</downloadbinaries>
</target>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists