JaroslavTulach at 10:04, 7 June 2013 - 2013-06-07 10:04:14

←Older revision Revision as of 10:04, 7 June 2013
Line 18: Line 18:
Which will go through all modules in your suite and test whether their dependencies are as modern as they can be. Enjoy [[NetBeans]] 6.9, use [[netbeans:AutoUpdateTask|AutoUpdateTask]], it will simplify your future upgrades!
Which will go through all modules in your suite and test whether their dependencies are as modern as they can be. Enjoy [[NetBeans]] 6.9, use [[netbeans:AutoUpdateTask|AutoUpdateTask]], it will simplify your future upgrades!
 +
 +
 +
[[Category:OpenSourceContribution]]

JaroslavTulach at 20:13, 24 June 2010 - 2010-06-24 20:13:11

←Older revision Revision as of 20:13, 24 June 2010
Line 17: Line 17:
</source>
</source>
-
Which will go through all modules in your suite and test whether their dependencies are as modern as they can be. Enjoy [[NetBeans]] 6.9!
+
Which will go through all modules in your suite and test whether their dependencies are as modern as they can be. Enjoy [[NetBeans]] 6.9, use [[netbeans:AutoUpdateTask|AutoUpdateTask]], it will simplify your future upgrades!

JaroslavTulach at 20:12, 24 June 2010 - 2010-06-24 20:12:14

←Older revision Revision as of 20:12, 24 June 2010
Line 1: Line 1:
[http://dvbcentral.sf.net DVB Central] is a TV broadcasting solution written on top of [[NetBeans Runtime Container]].
[http://dvbcentral.sf.net DVB Central] is a TV broadcasting solution written on top of [[NetBeans Runtime Container]].
-
Today I decided to upgrade it to use version NetBeans 6.9 instead of 6.8. As I was already using the [[netbeans:AutoUpdateTask|AutoUpdateTask]], the whole change was [http://dvbcentral.hg.sourceforge.net/hgweb/dvbcentral/dvbcentral/rev/9f8bf1546dd9 quite simple]:
+
Today I decided to upgrade it to use [[NetBeans]] version 6.9 instead of 6.8. As I was already using the [[netbeans:AutoUpdateTask|AutoUpdateTask]], the whole change was [http://dvbcentral.hg.sourceforge.net/hgweb/dvbcentral/dvbcentral/rev/9f8bf1546dd9 quite simple]:
<source lang="diff">
<source lang="diff">

JaroslavTulach: New page: [http://dvbcentral.sf.net DVB Central] is a TV broadcasting solution written on top of NetBeans Runtime Container. Today I decided to upgrade it to use version NetBeans 6.9 instead of... - 2010-06-24 20:11:31

New page: [http://dvbcentral.sf.net DVB Central] is a TV broadcasting solution written on top of NetBeans Runtime Container. Today I decided to upgrade it to use version NetBeans 6.9 instead of...

New page

[http://dvbcentral.sf.net DVB Central] is a TV broadcasting solution written on top of [[NetBeans Runtime Container]].

Today I decided to upgrade it to use version NetBeans 6.9 instead of 6.8. As I was already using the [[netbeans:AutoUpdateTask|AutoUpdateTask]], the whole change was [http://dvbcentral.hg.sourceforge.net/hgweb/dvbcentral/dvbcentral/rev/9f8bf1546dd9 quite simple]:

<source lang="diff">
@@ -26,7 +26,7 @@
- <property name="netbeans.updatecenter.url" value="http://bits.netbeans.org/netbeans/6.8/community/fcs/uc/catalog.xml.gz"/>
+ <property name="netbeans.updatecenter.url" value="http://bits.netbeans.org/netbeans/6.9/fcs/uc/catalog.xml.gz"/>
</source>

E.g. just use the update catalog for the new version.

The [[NetBeans]] 6.9 introduces one significant source compatible change: it separates [[Lookup]] [[API]] into own [[JAR]]. The old code still compiles and runs, yet it prints various warnings during initialization. To prevent them, please update your dependencies. This can be done by following script:

<source lang="bash">
$ ls -1 */build.xml | while read X; do ant -f $X fix-dependencies; done
</source>

Which will go through all modules in your suite and test whether their dependencies are as modern as they can be. Enjoy [[NetBeans]] 6.9!