Re: [wtp-dev] Broken SSE builds due to compilation error, but only in Hudson (can't reproduce locally)

2017-12-18 Thread Nick Boldt
John,

Glad you're on board with updating to 1.8.

Here's what *I* would do, because I tend to prefer commandline tools over
GUI ones.

1. I would start with piping all the manifest files through sed...

   for m in $(find . -name MANIFEST.MF); do sed -i -e
"s#J2SE-1\..#JavaSE-1.8#" -e "s#JavaSE-1\..#JavaSE-1.8#" ${m}; done

2. Run a build to see what breaks with the updated manifests from 1.4, 1.5,
1.6 -> 1.8.

(If you don't like sed, there's prolly a way to do the whole thing in
Eclipse, but that'll likely have to be done one plugin at a time.)

3. Then fix all the compilation complaints in Eclipse.

4. You'll probably also want to bump all your plugins/features from x.y.z
to x.(y+1).z to avoid breaking old consumers.

The easiest way for that is to run this:

mvn -Dtycho.mode=maven
org.eclipse.tycho:tycho-versions-plugin:1.0.0:set-version
-DnewVersion=5.6.7-SNAPSHOT

But bear in mind that it expects ALL plugins/features to be the same
version, and if your project doesn't roll that way, it won't bump
everything in the reactor in one fell swoop, so you'll have to run it in
each and every plugin folder. Or just edit your MANIFEST.MF and pom.xml
files by hand.

Nick



On Mon, Dec 18, 2017 at 12:50 PM, John J Collier 
wrote:

> I agree that we should try and bump the BREE wherever possible. JEE Tools
> for example seems to still be on a BREE of J2SE-1.5, if we could get that
> up to 1.8, that would be great.
>
> Nick, what would have to be done to bump up JEE Tools to 1.8?
>
>
> Regards,
>
> John Collier
> Software Developer, WDT/IBM Cloud
> Email: john.j.coll...@ibm.com
> Phone: (905)-413-3389 <(905)%20413-3389>
>
>
>
> From:Nick Boldt 
> To:Nitin Dahyabhai 
> Cc:Keith Chong , Victor Rubezhny <
> vrube...@redhat.com>, "General discussion of project-wide or
> architectural issues." 
> Date:2017/12/18 10:57 AM
> Subject:Re: [wtp-dev] Broken SSE builds due to compilation error,
> but only in Hudson (can't reproduce locally)
> Sent by:wtp-dev-boun...@eclipse.org
> --
>
>
>
> *wild cheering for dropping support for BREE = J2SE-1.4*
>
> *waves Team Nitin flag*
>
> If you're keen to break some more eggs, please have a look at
> *https://bugs.eclipse.org/bugs/show_bug.cgi?id=528800*
> re:
> updating toolchains.xml to the latest JDKs, and maybe removing support for
> obsolete BREEs like JDK 1.4 - 1.7.
>
> Just a thought!
>
> Nick
>
>
>
> On Mon, Dec 18, 2017 at 10:45 AM, Nitin Dahyabhai <
> *nitin.dahyab...@gmail.com* > wrote:
> I intend to bump up the BREE of both SSE core and UI to 1.8 in the master
> branch to get us past this once and for all. With the platform dependencies
> already there, as long as I can keep the code compliance itself where it is
> (it's more a pragmatic choice than a dogmatic one) I don't see much cause
> not to.
>
> -Nitin
>
> On Dec 18, 2017, at 10:37 AM, Nick Boldt <*nbo...@redhat.com*
> > wrote:
>
> I've been seeing this for about a week now:
>
> [ERROR] Failed to execute goal 
> org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile
> (default-compile) on project org.eclipse.wst.sse.ui: Compilation failure:
> Compilation failure:
> [ERROR] /jobs/genie.webtools/webtools-sourceediting_R3_10/workspace/
> core/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/
> StructuredTextAnnotationHover.java:[43]
> [ERROR] HTMLPrinter.addPageProlog(buffer);
> [ERROR] ^
> [ERROR] The type java.lang.StringBuilder cannot be resolved. It is
> indirectly referenced from required .class files
>
> Affected jobs:
> *
> *https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/webtools-sourceediting_R3_10/*
> 
> *
> *https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/WTP-R3_10_Integration/*
> 
>
> Anyone have time to investigate why this is failing, and offer a fix? I
> tried to have Hudson ignore the workspace settings files, which worked in
> the gerrit job 

Re: [wtp-dev] Broken SSE builds due to compilation error, but only in Hudson (can't reproduce locally)

2017-12-18 Thread John J Collier
I agree that we should try and bump the BREE wherever possible. JEE Tools 
for example seems to still be on a BREE of J2SE-1.5, if we could get that 
up to 1.8, that would be great. 

Nick, what would have to be done to bump up JEE Tools to 1.8?


Regards,

John Collier
Software Developer, WDT/IBM Cloud
Email: john.j.coll...@ibm.com
Phone: (905)-413-3389



From:   Nick Boldt 
To: Nitin Dahyabhai 
Cc: Keith Chong , Victor Rubezhny 
, "General discussion of project-wide or 
architectural issues." 
Date:   2017/12/18 10:57 AM
Subject:Re: [wtp-dev] Broken SSE builds due to compilation error, 
but only in Hudson (can't reproduce locally)
Sent by:wtp-dev-boun...@eclipse.org



*wild cheering for dropping support for BREE = J2SE-1.4*

*waves Team Nitin flag* 

If you're keen to break some more eggs, please have a look at 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=528800 re: updating 
toolchains.xml to the latest JDKs, and maybe removing support for obsolete 
BREEs like JDK 1.4 - 1.7.

Just a thought!

Nick



On Mon, Dec 18, 2017 at 10:45 AM, Nitin Dahyabhai <
nitin.dahyab...@gmail.com> wrote:
I intend to bump up the BREE of both SSE core and UI to 1.8 in the master 
branch to get us past this once and for all. With the platform 
dependencies already there, as long as I can keep the code compliance 
itself where it is (it's more a pragmatic choice than a dogmatic one) I 
don't see much cause not to.

-Nitin

On Dec 18, 2017, at 10:37 AM, Nick Boldt  wrote:

I've been seeing this for about a week now:

[ERROR] Failed to execute goal 
org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile (default-compile) on 
project org.eclipse.wst.sse.ui: Compilation failure: Compilation failure:
[ERROR] 
/jobs/genie.webtools/webtools-sourceediting_R3_10/workspace/core/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/StructuredTextAnnotationHover.java:[43]
[ERROR] HTMLPrinter.addPageProlog(buffer);
[ERROR] ^
[ERROR] The type java.lang.StringBuilder cannot be resolved. It is 
indirectly referenced from required .class files

Affected jobs:
* 
https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/webtools-sourceediting_R3_10/
* 
https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/WTP-R3_10_Integration/

Anyone have time to investigate why this is failing, and offer a fix? I 
tried to have Hudson ignore the workspace settings files, which worked in 
the gerrit job but didn't fix the problem in the other jobs. 

Related bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=528778

BTW, are the SSE committers seeing the mail sent to wtp-rel...@eclipse.org 
?

Thanks in advance,

-- 
Nick Boldt
Senior Software Engineer, RHCSA
Productization Lead :: JBoss Tools & Dev Studio
IM: @nickboldt / @nboldt / http://nick.divbyzero.com


TRIED. TESTED. TRUSTED.
@ @redhatnews  Red Hat



-- 
Nick Boldt
Senior Software Engineer, RHCSA
Productization Lead :: JBoss Tools & Dev Studio
IM: @nickboldt / @nboldt / http://nick.divbyzero.com


TRIED. TESTED. TRUSTED.
@ @redhatnews  Red Hat___
wtp-dev mailing list
wtp-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe 
from this list, visit
https://urldefense.proofpoint.com/v2/url?u=https-3A__dev.eclipse.org_mailman_listinfo_wtp-2Ddev=DwICAg=jf_iaSHvJObTbx-siA1ZOg=6q9DBEiC7mYUpxGNnkdhHBpN_7m_NuKsWnDlkmpsTd4=yleicvggdbs8IhYGQg0-YbWEXXoA1kzbeg042TBSZhU=gyQsP-x7tLKC2xqGxHwQL-cCF72UNnGDskXnZNDIy-0=



___
wtp-dev mailing list
wtp-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/wtp-dev

Re: [wtp-dev] Broken SSE builds due to compilation error, but only in Hudson (can't reproduce locally)

2017-12-18 Thread Nick Boldt
*wild cheering for dropping support for BREE = J2SE-1.4*

*waves Team Nitin flag*

If you're keen to break some more eggs, please have a look at
https://bugs.eclipse.org/bugs/show_bug.cgi?id=528800 re: updating
toolchains.xml to the latest JDKs, and maybe removing support for obsolete
BREEs like JDK 1.4 - 1.7.

Just a thought!

Nick



On Mon, Dec 18, 2017 at 10:45 AM, Nitin Dahyabhai  wrote:

> I intend to bump up the BREE of both SSE core and UI to 1.8 in the master
> branch to get us past this once and for all. With the platform dependencies
> already there, as long as I can keep the code compliance itself where it is
> (it's more a pragmatic choice than a dogmatic one) I don't see much cause
> not to.
>
> -Nitin
>
> On Dec 18, 2017, at 10:37 AM, Nick Boldt  wrote:
>
> I've been seeing this for about a week now:
>
> [ERROR] Failed to execute goal 
> org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile
> (default-compile) on project org.eclipse.wst.sse.ui: Compilation failure:
> Compilation failure:
> [ERROR] /jobs/genie.webtools/webtools-sourceediting_R3_10/workspace/
> core/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/
> StructuredTextAnnotationHover.java:[43]
> [ERROR] HTMLPrinter.addPageProlog(buffer);
> [ERROR] ^
> [ERROR] The type java.lang.StringBuilder cannot be resolved. It is
> indirectly referenced from required .class files
>
> Affected jobs:
> * https://hudson.eclipse.org/webtools/view/webtools_R3_10/
> job/webtools-sourceediting_R3_10/
> * https://hudson.eclipse.org/webtools/view/webtools_R3_10/
> job/WTP-R3_10_Integration/
>
> Anyone have time to investigate why this is failing, and offer a fix? I
> tried to have Hudson ignore the workspace settings files, which worked in
> the gerrit job but didn't fix the problem in the other jobs.
>
> Related bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=528778
>
> BTW, are the SSE committers seeing the mail sent to wtp-rel...@eclipse.org
> ?
>
> Thanks in advance,
>
> --
>
> Nick Boldt
>
> Senior Software Engineer, RHCSA
>
> Productization Lead :: JBoss Tools & Dev Studio
>
> IM: @nickboldt / @nboldt / http://nick.divbyzero.com
> 
> TRIED. TESTED. TRUSTED. 
> @ @redhatnews   Red Hat
> 
>
>


-- 

Nick Boldt

Senior Software Engineer, RHCSA

Productization Lead :: JBoss Tools & Dev Studio

IM: @nickboldt / @nboldt / http://nick.divbyzero.com

TRIED. TESTED. TRUSTED. 
@ @redhatnews   Red Hat

___
wtp-dev mailing list
wtp-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/wtp-dev

Re: [wtp-dev] Broken SSE builds due to compilation error, but only in Hudson (can't reproduce locally)

2017-12-18 Thread Nitin Dahyabhai
I intend to bump up the BREE of both SSE core and UI to 1.8 in the master 
branch to get us past this once and for all. With the platform dependencies 
already there, as long as I can keep the code compliance itself where it is 
(it's more a pragmatic choice than a dogmatic one) I don't see much cause not 
to.

-Nitin

> On Dec 18, 2017, at 10:37 AM, Nick Boldt  wrote:
> 
> I've been seeing this for about a week now:
> 
> [ERROR] Failed to execute goal 
> org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile (default-compile) on 
> project org.eclipse.wst.sse.ui: Compilation failure: Compilation failure:
> [ERROR] 
> /jobs/genie.webtools/webtools-sourceediting_R3_10/workspace/core/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/StructuredTextAnnotationHover.java:[43]
> [ERROR] HTMLPrinter.addPageProlog(buffer);
> [ERROR] ^
> [ERROR] The type java.lang.StringBuilder cannot be resolved. It is indirectly 
> referenced from required .class files
> 
> Affected jobs:
> * 
> https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/webtools-sourceediting_R3_10/
> * 
> https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/WTP-R3_10_Integration/
> 
> Anyone have time to investigate why this is failing, and offer a fix? I tried 
> to have Hudson ignore the workspace settings files, which worked in the 
> gerrit job but didn't fix the problem in the other jobs. 
> 
> Related bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=528778
> 
> BTW, are the SSE committers seeing the mail sent to wtp-rel...@eclipse.org ?
> 
> Thanks in advance,
> 
> -- 
> Nick Boldt
> Senior Software Engineer, RHCSA
> Productization Lead :: JBoss Tools & Dev Studio
> IM: @nickboldt / @nboldt / http://nick.divbyzero.com
>   
> TRIED. TESTED. TRUSTED.
> @ @redhatnews  Red Hat
___
wtp-dev mailing list
wtp-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/wtp-dev

[wtp-dev] Broken SSE builds due to compilation error, but only in Hudson (can't reproduce locally)

2017-12-18 Thread Nick Boldt
I've been seeing this for about a week now:

[ERROR] Failed to execute goal
org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile
(default-compile) on project org.eclipse.wst.sse.ui: Compilation failure:
Compilation failure:
[ERROR] /jobs/genie.webtools/webtools-sourceediting_R3_10/workspace/
core/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/
StructuredTextAnnotationHover.java:[43]
[ERROR] HTMLPrinter.addPageProlog(buffer);
[ERROR] ^
[ERROR] The type java.lang.StringBuilder cannot be resolved. It is
indirectly referenced from required .class files

Affected jobs:
*
https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/webtools-sourceediting_R3_10/
*
https://hudson.eclipse.org/webtools/view/webtools_R3_10/job/WTP-R3_10_Integration/

Anyone have time to investigate why this is failing, and offer a fix? I
tried to have Hudson ignore the workspace settings files, which worked in
the gerrit job but didn't fix the problem in the other jobs.

Related bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=528778

BTW, are the SSE committers seeing the mail sent to wtp-rel...@eclipse.org ?

Thanks in advance,

-- 

Nick Boldt

Senior Software Engineer, RHCSA

Productization Lead :: JBoss Tools & Dev Studio

IM: @nickboldt / @nboldt / http://nick.divbyzero.com

TRIED. TESTED. TRUSTED. 
@ @redhatnews   Red Hat

___
wtp-dev mailing list
wtp-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/wtp-dev

[wtp-dev] [aeri] Weekly Problem Digest for JavaScript Development Tools ≥ 4.6.0.i20160501

2017-12-18 Thread Error Reports Bot
New problems reported last week

Summary Reporters   Status  SeverityBug
1.   IllegalAccessError in AbstractAnnotationHover.formatMessage 

 2   UNCONFIRMED normal  -
2.   Exception below JsWebNature.addJsNature (thrown in 
ResourceException.provideStackTrace) 

 1   UNCONFIRMED normal  -
3.   IllegalAccessException below DialogUtils$ScopeMergerBase$1.create 
(thrown in Reflection.newIllegalAccessException) 

  1   UNCONFIRMED normal  -
4.   JsonProtocolParseException in 
GeneratedWipProtocolParser$Value_24. 

1   UNCONFIRMED normal  -
5.   LinkageError in ClosureCompilerASTConverter.processAstRoot 

  1   UNCONFIRMED normal  -
6.   ResourceException below JavaProject.removeFromBuildSpec (thrown in 
Project.setDescription) 

  1   UNCONFIRMED normal  -


Active problems last month

Summary Reporters   Status  SeverityBug
1.   ClassCastException in 
PackageExplorerContentProvider.handleAffectedChildren 

  500+   NEW normal  467140 

2.   NullPointerException in Scope.getKey 

 500+   UNCONFIRMED normal  -
3.   IllegalStateException in ASTParser.createAST 

 500+   UNCONFIRMED normal  -
4.   AssertionFailedException below JavaNode. (thrown in 
Position.) 

   500+   UNCONFIRMED normal  -
5.   CoreException in ChromiumHandler.execute 

 500+   UNCONFIRMED normal  -
6.   ClassCastException in EsprimaParser.createProblem 

500+   UNCONFIRMED normal  -
7.   TeamException below SetContainerOperation.execute (thrown in 
RepositoryProvider.mapNewProvider) 

  500+   UNCONFIRMED normal  -
8.   EOFException below 
JavaModelManager$VariablesAndContainersLoadHelper.loadInt (thrown in 
DataInputStream.readInt) 

 500+   UNCONFIRMED normal  -
9.   ClassCastException in EsprimaParser.parse 

500+   UNCONFIRMED normal  -
10.  ResourceException below SetContainerOperation.execute (thrown in 
Project.checkAccessible) 

500+   UNCONFIRMED normal  -
11.  IllegalArgumentException in ASTNode.setStructuralProperty 

500+   UNCONFIRMED normal  -
12.  IllegalArgumentException in ASTNode.setSourceRange 

   500+   NEW normal  390913 

13.  ClassCastException in Parser.consumeEnterVariable 

500+   UNCONFIRMED normal  -
14.  IllegalStateException in ASTParser.internalCreateAST 

481 UNCONFIRMED normal  -
15.  BadLocationException below JavaAutoIndentStrategy.smartPaste (thrown 
in TreeLineTracker.fail) 

   465 UNCONFIRMED normal  -
16.  ConcurrentModificationException below DeltaProcessor.resourceChanged 
(thrown in HashMap$HashIterator.nextNode) 

[wtp-dev] [aeri] Weekly Problem Digest for Web Standard Tools ≥4.6.0.i20160501

2017-12-18 Thread Error Reports Bot
New problems reported last week

Summary Reporters   Status  SeverityBug
1.   ClassFormatError below XMLModelLoader.newModel (thrown in 
ClassLoader.defineClass1) 

 1   UNCONFIRMED normal  -
2.   ClassFormatError in XMLModelLoader.newModel 

 1   UNCONFIRMED normal  -
3.   IllegalThreadStateException below Server.autoPublish (thrown in 
Thread.start) 

   1   UNCONFIRMED normal  -
4.   MissingResourceException below 
ValidatorHelper.computeValidationInformation (thrown in 
ResourceBundle.throwMissingResourceException) 

1   UNCONFIRMED normal  -
5.   NoClassDefFoundError below ServerUIPlugin.start (thrown in 
GeneratedConstructorAccessor.newInstance) 

1   UNCONFIRMED normal  -
6.   NullPointerException below Server.stopImpl2 (thrown in 
GlassFishServer.getVersion) 

  1   UNCONFIRMED normal  -
7.   NullPointerException in XSLHyperlinkDetector.detectHyperlinks 

   1   UNCONFIRMED normal  -
8.   OperationCanceledException below DeleteServerDialog$2$1.run (thrown in 
SubMonitor$RootInfo.checkForCancellation) 

1   UNCONFIRMED normal  -
9.   OutOfMemoryError in XMLSourceParser.getNextRegion 

   1   UNCONFIRMED normal  -


Active problems last month

Summary Reporters   Status  SeverityBug
1.   IllegalArgumentException in Versionable.getVersion 

   500+   UNCONFIRMED normal  -
2.   NullPointerException in XSLDebugUILaunchListener.launchesTerminated 

  500+   UNCONFIRMED normal  -
3.   NullPointerException in VirtualFolder.getFirstTaggedResource 

 500+   NEW normal  480643 

4.   NoClassDefFoundError in ModuleCoreNature.createURIConverter 

  500+   UNCONFIRMED normal  -
5.   NoClassDefFoundError in EMFWorkbenchContext.createURIConverter 

   500+   UNCONFIRMED normal  -
6.   DOMException in ElementImpl.insertBefore 

 500+   UNCONFIRMED normal  -
7.   NullPointerException below Validator$V2.updateResults (thrown in 
LinkedList$ListItr.next) 

500+   UNCONFIRMED normal  -
8.   ResourceException below ValBuilderJob.fullBuild (thrown in 
Project.checkAccessible) 

  500+   UNCONFIRMED normal  -
9.   OperationCanceledException in HTMLValidator.validateFile 

 500+   UNCONFIRMED normal  -
10.  NullPointerException in FacetedProjectFrameworkImpl.deletePreset 

 500+   UNCONFIRMED normal  -
11.  AssertionFailedException below MarkerManager.createMarker (thrown in 
MarkerInfo.checkValidAttribute) 

 500+   UNCONFIRMED normal  -
12.  SWTException below ModuleAssemblyRootPage.refreshProblemsView (thrown 
in Widget.checkWidget) 

485 UNCONFIRMED normal  -
13.  NullPointerException in ComponentCoreURIConverter.newPlatformURI 

[wtp-dev] [aeri] Weekly Problem Digest for J2ee Standard Tools ≥ 4.6.0.i20160501

2017-12-18 Thread Error Reports Bot
New problems reported last week

Summary Reporters   Status  SeverityBug
1.   IOException below OpenJ2EEResourceAction.updateSelection (thrown in 
InflaterInputStream.ensureOpen) 

 1   UNCONFIRMED normal  -
2.   NullPointerException in TomcatVersionHelper.getCatalinaVersion 

  1   UNCONFIRMED normal  -
3.   ResourceException below 
DOMAdapterFactoryContentProvider$ExchangeLoadingWsProjectRunnable.run (thrown 
in File.getContentDescription) 

1   UNCONFIRMED normal  -
4.   StackOverflowError below XMLRootHandler.createParser (thrown in 
AccessController.doPrivileged) 

  1   UNCONFIRMED normal  -
5.   StackOverflowError below XMLRootHandler.createParser (thrown in 
ZipFile.getEntry) 

   1   UNCONFIRMED normal  -
6.   StackOverflowError below XMLRootHandler.parseContents (thrown in 
ZipCoder.getBytes) 

 1   UNCONFIRMED normal  -
7.   StackOverflowError below XMLRootHandler.parseContents (thrown in 
ZipFile.getEntry) 

  1   UNCONFIRMED normal  -
8.   ZipException below JsfLibraryUtil.getJsfLibraryVendorType (thrown in 
ZipFile.open) 

  1   UNCONFIRMED normal  -


Active problems last month

Summary Reporters   Status  SeverityBug
1.   NoStackTrace in J2EEModelProviderRegistry.readElement 

500+   UNCONFIRMED normal  -
2.   JavaModelException below WebAnnotationReader.createJavaeeObject 
(thrown in JavaElement.newJavaModelException) 

500+   UNCONFIRMED normal  -
3.   JavaModelException below 
CompressedJavaProject.getNonExternalSourceFolders (thrown in 
JavaElement.newJavaModelException) 

 500+   UNCONFIRMED normal  -
4.   IOException in ResourceBundleMapSource.createCachedBundleFile 

500+   NEW normal  463321 

5.   NullPointerException in 
LibraryProviderFrameworkImpl.getCurrentProvider 

  500+   UNCONFIRMED normal  -
6.   JavaModelException below WebAnnotationReader.analyzeCompilationUnit 
(thrown in JavaElement.newJavaModelException) 

500+   UNCONFIRMED normal  -
7.   NullPointerException in JEE5ModelProvider.getModelResource 

   500+   UNCONFIRMED normal  -
8.   NullPointerException in JEE5ContentProvider.getCachedModelProvider 

   500+   UNCONFIRMED normal  -
9.   NullPointerException in ConfigurationResourceListener.resourceChanged 

500+   NEW normal  467865 

10.  FileNotFoundException below FileUtil.copyFile (thrown in 
FileOutputStream.open0) 

 500+   UNCONFIRMED normal  -
11.  CoreException in TomcatServer.getTomcatConfiguration 

 500+   UNCONFIRMED normal  -
12.  ValidationException in WarValidator.validateInJob 

500+   UNCONFIRMED normal  -
13.  JavaModelException below 
AbstractAnnotationModelProvider.recursevilyProcessPackages (thrown in 
JavaElement.newJavaModelException)