Skip to content

Commit 85df041

Browse files
committed
Plugins suite upgraded to NetBeans 9.0
1 parent a3ee19a commit 85df041

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

plugins/nbproject/genfiles.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ build.xml.stylesheet.CRC32=531c622b
66
nbproject/build-impl.xml.data.CRC32=b0c79715
77
nbproject/build-impl.xml.script.CRC32=c97ce55f
88
nbproject/build-impl.xml.stylesheet.CRC32=[email protected]
9+
nbproject/platform.xml.data.CRC32=b0c79715
10+
nbproject/platform.xml.script.CRC32=6dcbd131
11+
nbproject/platform.xml.stylesheet.CRC32=[email protected]

plugins/nbproject/platform.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="platform" default="download" basedir="..">
3+
<condition property="download.required">
4+
<and>
5+
<not>
6+
<available file="${harness.dir}/suite.xml"/>
7+
</not>
8+
<isset property="bootstrap.url"/>
9+
<isset property="autoupdate.catalog.url"/>
10+
</and>
11+
</condition>
12+
<target name="download" if="download.required">
13+
<mkdir dir="${harness.dir}"/>
14+
<pathconvert pathsep="|" property="download.clusters">
15+
<mapper type="flatten"/>
16+
<path path="${cluster.path}"/>
17+
</pathconvert>
18+
<property name="disabled.modules" value=""/>
19+
<pathconvert property="module.includes" pathsep="">
20+
<mapper type="glob" from="${basedir}${file.separator}*" to="(?!^\Q*\E$)"/>
21+
<path>
22+
<filelist files="${disabled.modules}" dir="."/>
23+
</path>
24+
</pathconvert>
25+
<echo message="Downloading clusters ${download.clusters}"/>
26+
<property name="tasks.jar" location="${java.io.tmpdir}/tasks.jar"/>
27+
<get src="${bootstrap.url}" dest="${tasks.jar}" usetimestamp="true" verbose="true"/>
28+
<taskdef name="autoupdate" classname="org.netbeans.nbbuild.AutoUpdate" classpath="${tasks.jar}"/>
29+
<autoupdate installdir="${nbplatform.active.dir}" updatecenter="${autoupdate.catalog.url}">
30+
<modules includes="${module.includes}.*" clusters="${download.clusters}"/>
31+
<modules includes="org[.]netbeans[.]modules[.]apisupport[.]harness" clusters="harness"/>
32+
</autoupdate>
33+
</target>
34+
</project>

0 commit comments

Comments
 (0)