# HG changeset patch # User Jaroslav Tulach # Date 1261410852 -3600 # Node ID 9c1a298e51a930afcb93f56367cd5d5262cd33d3 # Parent 0fb6d11d7a262d6d8f5f649e70070c6a47aa3d78 Fixing dependencies since the org.openide.util and org.openide.util.lookup are now separate diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/aserverinfo/nbproject/project.properties --- a/samples/aserverinfo/nbproject/project.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/aserverinfo/nbproject/project.properties Mon Dec 21 16:54:12 2009 +0100 @@ -19,11 +19,11 @@ file.reference.junit-4.4.jar=../libs/dist/junit-4.4.jar file.reference.org-netbeans-insane.jar=../libs/dist/org-netbeans-insane.jar file.reference.org-netbeans-modules-nbjunit.jar=../libs/dist/org-netbeans-modules-nbjunit.jar -file.reference.org-openide-util.jar=../libs/dist/org-openide-util.jar +file.reference.org-openide-util-lookup.jar=../libs/dist/org-openide-util-lookup.jar includes=** jar.compress=false javac.classpath=\ - ${file.reference.org-openide-util.jar} + ${file.reference.org-openide-util-lookup.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/aserverinfo/test/org/apidesign/aserverinfo/test/BuilderFactoryTest.java --- a/samples/aserverinfo/test/org/apidesign/aserverinfo/test/BuilderFactoryTest.java Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/aserverinfo/test/org/apidesign/aserverinfo/test/BuilderFactoryTest.java Mon Dec 21 16:54:12 2009 +0100 @@ -2,6 +2,8 @@ import java.net.MalformedURLException; import java.net.URL; +import java.util.logging.Level; +import java.util.logging.Logger; import org.apidesign.aserverinfo.builder.ServerConnector; import org.apidesign.aserverinfo.builder.ServerInfo; import org.apidesign.aserverinfo.spi.NameProvider; @@ -11,7 +13,6 @@ import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; -import org.openide.util.Exceptions; public class BuilderFactoryTest { @@ -78,7 +79,7 @@ try { return new URL("http://www.apidesign.org"); } catch (MalformedURLException ex) { - Exceptions.printStackTrace(ex); + Logger.getLogger(BuilderFactoryTest.class.getName()).log(Level.SEVERE, null, ex); return null; } } diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/aserverinfo/test/org/apidesign/aserverinfo/test/CummulativeFactoryTest.java --- a/samples/aserverinfo/test/org/apidesign/aserverinfo/test/CummulativeFactoryTest.java Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/aserverinfo/test/org/apidesign/aserverinfo/test/CummulativeFactoryTest.java Mon Dec 21 16:54:12 2009 +0100 @@ -1,5 +1,7 @@ package org.apidesign.aserverinfo.test; +import java.util.logging.Logger; +import java.util.logging.Level; import java.net.MalformedURLException; import java.net.URL; import org.apidesign.aserverinfo.cummulativefactory.ServerConnector; @@ -10,7 +12,6 @@ import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; -import org.openide.util.Exceptions; public class CummulativeFactoryTest { @@ -75,7 +76,7 @@ try { return new URL("http://www.apidesign.org"); } catch (MalformedURLException ex) { - Exceptions.printStackTrace(ex); + Logger.getLogger(CummulativeFactoryTest.class.getName()).log(Level.SEVERE, null, ex); return null; } } diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/aserverinfo/test/org/apidesign/aserverinfo/test/FactoriesTest.java --- a/samples/aserverinfo/test/org/apidesign/aserverinfo/test/FactoriesTest.java Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/aserverinfo/test/org/apidesign/aserverinfo/test/FactoriesTest.java Mon Dec 21 16:54:12 2009 +0100 @@ -1,5 +1,7 @@ package org.apidesign.aserverinfo.test; +import java.util.logging.Logger; +import java.util.logging.Level; import java.net.MalformedURLException; import java.net.URL; import org.apidesign.aserverinfo.factories.ServerConnector; @@ -11,7 +13,6 @@ import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; -import org.openide.util.Exceptions; public class FactoriesTest { @@ -79,7 +80,7 @@ try { return new URL("http://www.apidesign.org"); } catch (MalformedURLException ex) { - Exceptions.printStackTrace(ex); + Logger.getLogger(FactoriesTest.class.getName()).log(Level.SEVERE, null, ex); return null; } } diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/aserverinfo/test/org/apidesign/aserverinfo/test/MagicalBagFactoryTest.java --- a/samples/aserverinfo/test/org/apidesign/aserverinfo/test/MagicalBagFactoryTest.java Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/aserverinfo/test/org/apidesign/aserverinfo/test/MagicalBagFactoryTest.java Mon Dec 21 16:54:12 2009 +0100 @@ -2,6 +2,8 @@ import java.net.MalformedURLException; import java.net.URL; +import java.util.logging.Level; +import java.util.logging.Logger; import org.apidesign.aserverinfo.magicalbagfactory.ServerConnector; import org.apidesign.aserverinfo.spi.NameProvider; import org.apidesign.aserverinfo.spi.ResetHandler; @@ -10,7 +12,6 @@ import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; -import org.openide.util.Exceptions; import org.openide.util.Lookup; import org.openide.util.lookup.AbstractLookup; import org.openide.util.lookup.InstanceContent; @@ -65,7 +66,7 @@ try { return new URL("http://www.apidesign.org"); } catch (MalformedURLException ex) { - Exceptions.printStackTrace(ex); + Logger.getLogger(MagicalBagFactoryTest.class.getName()).log(Level.SEVERE, null, ex); return null; } } diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/componentinjection/anagram-modular/build.xml --- a/samples/componentinjection/anagram-modular/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/componentinjection/anagram-modular/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -12,11 +12,11 @@ - + - + @@ -49,7 +49,7 @@ - + @@ -96,7 +96,7 @@ - + @@ -107,7 +107,7 @@ - + @@ -116,7 +116,7 @@ - + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/componentinjection/anagram-modular/nbproject/project.xml --- a/samples/componentinjection/anagram-modular/nbproject/project.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/componentinjection/anagram-modular/nbproject/project.xml Mon Dec 21 16:54:12 2009 +0100 @@ -274,13 +274,13 @@ src-api-compiletimecaches - src-api:../../libs/dist/org-openide-filesystems.jar:../../libs/dist/org-openide-util.jar + src-api:../../libs/dist/org-openide-filesystems.jar:../../libs/dist/org-openide-util-lookup.jar build/api-compiletimecaches/classes 1.5 src-word-annotated - src-api:src-api-compiletimecaches:../../libs/dist/org-openide-filesystems.jar:../../libs/dist/org-openide-util.jar + src-api:src-api-compiletimecaches:../../libs/dist/org-openide-filesystems.jar:../../libs/dist/org-openide-util-lookup.jar build/word-annotated/classes 1.5 @@ -334,7 +334,7 @@ src-app-lookup - src-api:src-scrambler-simple:src-word-static:src-gui:../../libs/dist/org-openide-util.jar + src-api:src-scrambler-simple:src-word-static:src-gui:../../libs/dist/org-openide-util-lookup.jar build/app-lookup/classes 1.5 @@ -346,7 +346,7 @@ src-test - src-api:../../libs/dist/junit-4.4.jar::../../libs/dist/org-netbeans-modules-nbjunit.jar:../../libs/dist/org-netbeans-insane.jar:src-gui:../../libs/dist/org-openide-util.jar:src-app-lookup:src-app-serviceloader + src-api:../../libs/dist/junit-4.4.jar::../../libs/dist/org-netbeans-modules-nbjunit.jar:../../libs/dist/org-netbeans-insane.jar:src-gui:../../libs/dist/org-openide-util-lookup.jar:src-app-lookup:src-app-serviceloader 1.5 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensibleicon/build.xml --- a/samples/extensibleicon/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensibleicon/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -2,6 +2,11 @@ + + + + + Builds, tests, and runs the project extensibleicon. diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensibleicon/nbproject/build-impl.xml --- a/samples/extensibleicon/nbproject/build-impl.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensibleicon/nbproject/build-impl.xml Mon Dec 21 16:54:12 2009 +0100 @@ -20,6 +20,13 @@ --> + + + + + + + @@ -152,14 +190,23 @@ - + + - + + + + + + + + - + + @@ -198,7 +245,7 @@ - + @@ -213,18 +260,19 @@ + - + - + @@ -255,6 +303,12 @@ + + + + + + @@ -263,8 +317,11 @@ + - + + + @@ -281,12 +338,16 @@ + + + + - + @@ -310,7 +371,29 @@ COMPILATION SECTION =================== --> - + + + + + + + + + + + + + + + + + + + + + + + @@ -319,10 +402,15 @@ - + + + + + + - + @@ -331,7 +419,7 @@ - + @@ -339,13 +427,13 @@ Must select some files in the IDE or set javac.includes - + - + - + - + @@ -405,11 +493,53 @@ java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensibleicon/nbproject/genfiles.properties --- a/samples/extensibleicon/nbproject/genfiles.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensibleicon/nbproject/genfiles.properties Mon Dec 21 16:54:12 2009 +0100 @@ -1,8 +1,8 @@ build.xml.data.CRC32=cced9d14 -build.xml.script.CRC32=3e240a9b -build.xml.stylesheet.CRC32=be360661 +build.xml.script.CRC32=a709ccd8 +build.xml.stylesheet.CRC32=958a1d3e@1.34.0.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=cced9d14 -nbproject/build-impl.xml.script.CRC32=a8c3754a -nbproject/build-impl.xml.stylesheet.CRC32=487672f9 +nbproject/build-impl.xml.script.CRC32=36d0e349 +nbproject/build-impl.xml.stylesheet.CRC32=576378a2@1.34.0.45 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensibleicon/nbproject/project.properties --- a/samples/extensibleicon/nbproject/project.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensibleicon/nbproject/project.properties Mon Dec 21 16:54:12 2009 +0100 @@ -3,6 +3,7 @@ # This directory is removed when the project is cleaned: build.dir=build build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes @@ -19,11 +20,11 @@ file.reference.org-netbeans-insane.jar=../libs/dist/org-netbeans-insane.jar file.reference.org-netbeans-modules-nbjunit.jar=../libs/dist/org-netbeans-modules-nbjunit.jar file.reference.junit4.jar=../libs/dist/junit-4.4.jar -file.reference.org-openide-util.jar=../libs/dist/org-openide-util.jar +file.reference.org-openide-util-lookup.jar=../libs/dist/org-openide-util-lookup.jar includes=** jar.compress=false javac.classpath=\ - ${file.reference.org-openide-util.jar} + ${file.reference.org-openide-util-lookup.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -46,6 +47,7 @@ javadoc.use=true javadoc.version=false javadoc.windowtitle= +jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/jaxb/api" meta.inf.dir=${src.dir}/META-INF platform.active=default_platform run.classpath=\ diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensionpoint/build.xml --- a/samples/extensionpoint/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensionpoint/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -44,7 +44,7 @@ @@ -61,7 +61,7 @@ srcdir="src-${version}" destdir="build/${version}/classes" source="1.5" target="1.5" - classpath="${cp}:../libs/dist/org-openide-util.jar" + classpath="${cp}:../libs/dist/org-openide-util-lookup.jar" /> diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/extensionpoint/nbproject/project.xml --- a/samples/extensionpoint/nbproject/project.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/extensionpoint/nbproject/project.xml Mon Dec 21 16:54:12 2009 +0100 @@ -84,7 +84,7 @@ src-api - ../libs/dist/org-openide-util.jar + ../libs/dist/org-openide-util-lookup.jar build/api/classes 1.5 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/gc/nbproject/build-impl.xml --- a/samples/gc/nbproject/build-impl.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/gc/nbproject/build-impl.xml Mon Dec 21 16:54:12 2009 +0100 @@ -20,6 +20,13 @@ --> + + + + + + + @@ -152,14 +190,23 @@ - + + - + + + + + + + + - + + @@ -198,7 +245,7 @@ - + @@ -213,6 +260,7 @@ + @@ -269,8 +317,11 @@ + + + @@ -287,12 +338,16 @@ + + + + - + @@ -316,7 +371,22 @@ COMPILATION SECTION =================== --> - + + + + + + + + + + + + + + + + @@ -332,10 +402,15 @@ - + + + + + + - + @@ -352,7 +427,7 @@ Must select some files in the IDE or set javac.includes - + @@ -372,10 +447,10 @@ - + - + @@ -418,11 +493,53 @@ java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/gc/nbproject/genfiles.properties --- a/samples/gc/nbproject/genfiles.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/gc/nbproject/genfiles.properties Mon Dec 21 16:54:12 2009 +0100 @@ -4,5 +4,5 @@ # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=70895030 -nbproject/build-impl.xml.script.CRC32=84e24199 -nbproject/build-impl.xml.stylesheet.CRC32=e55b27f5 +nbproject/build-impl.xml.script.CRC32=c80dbef4 +nbproject/build-impl.xml.stylesheet.CRC32=576378a2@1.34.0.45 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/gc/nbproject/project.properties --- a/samples/gc/nbproject/project.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/gc/nbproject/project.properties Mon Dec 21 16:54:12 2009 +0100 @@ -5,6 +5,7 @@ # This directory is removed when the project is cleaned: build.dir=build build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes @@ -22,10 +23,12 @@ file.reference.org-netbeans-insane.jar=../libs/dist/org-netbeans-insane.jar file.reference.org-netbeans-modules-nbjunit.jar=../libs/dist/org-netbeans-modules-nbjunit.jar file.reference.org-openide-util.jar=../libs/dist/org-openide-util.jar +file.reference.org-openide-util-lookup.jar=../libs/dist/org-openide-util-lookup.jar includes=** jar.compress=false javac.classpath=\ - ${file.reference.org-openide-util.jar} + ${file.reference.org-openide-util.jar}:\ + ${file.reference.org-openide-util-lookup.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -48,6 +51,7 @@ javadoc.use=true javadoc.version=false javadoc.windowtitle= +jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/jaxb/api" meta.inf.dir=${src.dir}/META-INF platform.active=default_platform run.classpath=\ diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/libs/build.xml --- a/samples/libs/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/libs/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -6,6 +6,11 @@ + + + + + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/preventcyclicdependencies/build.xml --- a/samples/preventcyclicdependencies/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/preventcyclicdependencies/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -40,7 +40,7 @@ @@ -58,7 +58,7 @@ destdir="build/${version}/classes" source="1.5" target="1.5" debug="true" - classpath="${cp}:../libs/dist/org-openide-util.jar" + classpath="${cp}:../libs/dist/org-openide-util-lookup.jar" /> diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/preventcyclicdependencies/nbproject/project.xml --- a/samples/preventcyclicdependencies/nbproject/project.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/preventcyclicdependencies/nbproject/project.xml Mon Dec 21 16:54:12 2009 +0100 @@ -104,7 +104,7 @@ src-acyclic1 - ../libs/dist/org-openide-util.jar + ../libs/dist/org-openide-util-lookup.jar build/acyclic1/classes 1.5 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/sidemeanings/build.xml --- a/samples/sidemeanings/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/sidemeanings/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -2,6 +2,11 @@ + + + + + Builds, tests, and runs the project sidemeanings. diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/sidemeanings/nbproject/build-impl.xml --- a/samples/sidemeanings/nbproject/build-impl.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/sidemeanings/nbproject/build-impl.xml Mon Dec 21 16:54:12 2009 +0100 @@ -20,6 +20,13 @@ --> + + + + + + + @@ -152,14 +190,23 @@ - + + - + + + + + + + + - + + @@ -198,7 +245,7 @@ - + @@ -213,18 +260,19 @@ + - + - + @@ -255,6 +303,12 @@ + + + + + + @@ -263,8 +317,11 @@ + - + + + @@ -281,12 +338,16 @@ + + + + - + @@ -310,7 +371,29 @@ COMPILATION SECTION =================== --> - + + + + + + + + + + + + + + + + + + + + + + + @@ -319,10 +402,15 @@ - + + + + + + - + @@ -331,7 +419,7 @@ - + @@ -339,13 +427,13 @@ Must select some files in the IDE or set javac.includes - + - + - + - + @@ -405,11 +493,53 @@ java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + @@ -626,4 +786,20 @@ + + + + + + + + + + + + + + + + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/sidemeanings/nbproject/genfiles.properties --- a/samples/sidemeanings/nbproject/genfiles.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/sidemeanings/nbproject/genfiles.properties Mon Dec 21 16:54:12 2009 +0100 @@ -1,8 +1,8 @@ build.xml.data.CRC32=ff1f72f4 -build.xml.script.CRC32=2f910bbe -build.xml.stylesheet.CRC32=be360661 +build.xml.script.CRC32=c38b508c +build.xml.stylesheet.CRC32=958a1d3e@1.32.0.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=ff1f72f4 -nbproject/build-impl.xml.script.CRC32=2b12d853 -nbproject/build-impl.xml.stylesheet.CRC32=487672f9 +nbproject/build-impl.xml.script.CRC32=a5ebb2f7 +nbproject/build-impl.xml.stylesheet.CRC32=43814ccb@1.32.0.45 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/sidemeanings/nbproject/project.properties --- a/samples/sidemeanings/nbproject/project.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/sidemeanings/nbproject/project.properties Mon Dec 21 16:54:12 2009 +0100 @@ -3,6 +3,7 @@ # This directory is removed when the project is cleaned: build.dir=build build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes @@ -42,6 +43,7 @@ javadoc.use=true javadoc.version=false javadoc.windowtitle= +jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/jaxb/api" meta.inf.dir=${src.dir}/META-INF platform.active=default_platform run.classpath=\ diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/unionfs/build.xml --- a/samples/unionfs/build.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/unionfs/build.xml Mon Dec 21 16:54:12 2009 +0100 @@ -2,6 +2,11 @@ + + + + + Builds, tests, and runs the project unionfs. diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/unionfs/nbproject/build-impl.xml --- a/samples/unionfs/nbproject/build-impl.xml Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/unionfs/nbproject/build-impl.xml Mon Dec 21 16:54:12 2009 +0100 @@ -19,7 +19,14 @@ - cleanup --> - + + + + + + + + @@ -152,14 +190,23 @@ - + + - + + + + + + + + - + + @@ -198,7 +245,7 @@ - + @@ -213,18 +260,19 @@ + - + - + @@ -235,7 +283,9 @@ - + + + @@ -253,6 +303,12 @@ + + + + + + @@ -261,8 +317,11 @@ + - + + + @@ -279,12 +338,16 @@ + + + + - + @@ -308,7 +371,29 @@ COMPILATION SECTION =================== --> - + + + + + + + + + + + + + + + + + + + + + + + @@ -317,10 +402,15 @@ - + + + + + + - + @@ -329,7 +419,7 @@ - + @@ -337,13 +427,13 @@ Must select some files in the IDE or set javac.includes - + - + - + - + @@ -403,11 +493,53 @@ java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/unionfs/nbproject/genfiles.properties --- a/samples/unionfs/nbproject/genfiles.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/unionfs/nbproject/genfiles.properties Mon Dec 21 16:54:12 2009 +0100 @@ -1,8 +1,8 @@ build.xml.data.CRC32=31076a65 -build.xml.script.CRC32=977a9029 -build.xml.stylesheet.CRC32=be360661 +build.xml.script.CRC32=64c09767 +build.xml.stylesheet.CRC32=958a1d3e@1.34.0.45 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=31076a65 -nbproject/build-impl.xml.script.CRC32=3625d6eb -nbproject/build-impl.xml.stylesheet.CRC32=f1d9da08 +nbproject/build-impl.xml.script.CRC32=d7a2cae8 +nbproject/build-impl.xml.stylesheet.CRC32=576378a2@1.34.0.45 diff -r 0fb6d11d7a26 -r 9c1a298e51a9 samples/unionfs/nbproject/project.properties --- a/samples/unionfs/nbproject/project.properties Thu Dec 17 07:37:54 2009 +0100 +++ b/samples/unionfs/nbproject/project.properties Mon Dec 21 16:54:12 2009 +0100 @@ -5,6 +5,7 @@ # This directory is removed when the project is cleaned: build.dir=build build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes @@ -20,12 +21,14 @@ excludes= file.reference.junit-4.4.jar=../libs/dist/junit-4.4.jar file.reference.org-openide-filesystems.jar=../libs/dist/org-openide-filesystems.jar +file.reference.org-openide-util-lookup.jar=../libs/dist/org-openide-util-lookup.jar file.reference.org-openide-util.jar=../libs/dist/org-openide-util.jar includes=** jar.compress=false javac.classpath=\ ${file.reference.org-openide-util.jar}:\ - ${file.reference.org-openide-filesystems.jar} + ${file.reference.org-openide-filesystems.jar}:\ + ${file.reference.org-openide-util-lookup.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -46,6 +49,7 @@ javadoc.use=true javadoc.version=false javadoc.windowtitle= +jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/jaxb/api" meta.inf.dir=${src.dir}/META-INF platform.active=default_platform run.classpath=\