[webbeans-dev] Deployment time
by Pete Muir
There may be some small inconsistencies here: Section 11.1 says that
DefinitionExceptions are raised before @Initialized, and
DeploymentExceptions are raised after @Initialized. The spec also
talks about "an exception is raised at deployment time if..." (e.g.
2.2 "If the type of an injection point is a parameterized type with a
type variable or wildcard, a DefinitionException is thrown by the
container at deployment time."). Sometimes (like above) it makes sense
to do this as a bean validation (i.e. for 3rd party beans too), which
means that the exception will be thrown after @Initialized.
To make this clearer, I think that two phases should be identified -
bean definition time, and bean deployment time, the exceptional cases
tied to the correct one through the spec and the 11.1 statement
modified accordingly.
--
Pete Muir
http://www.seamframework.org
http://in.relation.to/Bloggers/Pete
15 years, 8 months
[webbeans-dev] build modularisation of JBoss RI
by Mark Struberg
Hi!
Just a minor proposal to the current SVN topology:
Don't you think it's a good time to move the JSR-299 API out to an own SVN module completely on it's own?
I suggest this, because currently one cannot simply build the parent modules, but dig deeper and release the sub modules on it's own. You will also experience problems if you try to release the current module structure on a fresh system because of quasi cyclic dependencies.
.) the tck/trunk/pom.xml cannot be built without the API from ri/trunk
.) the ri/trunk/pom.xml cannot be build without the TCK from tck/trunk
So why not move the JSR-299 API out to api/trunk or something?
The build order would then be
api/trunk/pom.xml
tck/trunk/pom.xml
ri/trunk/pom.xml
(haven't analysed where the test-harness fits into, but shouldn't be a problem).
txs and LieGrue,
strub
15 years, 8 months
[webbeans-dev] Typing of XML elements
by Pete Muir
Hi Norman, and other XML experts,
One of the tasks for Web Beans is to build an XSD. There is an XSD per
package, and an root-element per class. Classes can have annotations,
such as bindings, which makes them into a bean. This means, for
example, that a child element of the class element could be a binding
type annotation (it's XML element equivalent), however placing, for
example, an annotation which is not, for example, a binding type would
be an error.
Therefore, we can increase the "type safety" of the XSD by restricting
the category of child elements that can be placed in the class
element. However, I don't know how to do this in XSD - any pointers?
I suspect we can't do this natively using XSD, but we can at least
mark this as a point that only certain categories of elements can be
placed, and domain-aware editor like JBoss Tools can use this. In this
case, any suggestions for how to do this "mark"?
Thanks!
--
Pete Muir
http://www.seamframework.org
http://in.relation.to/Bloggers/Pete
15 years, 8 months
[webbeans-dev] Spec Conflicts Between JSR-299, JSR-318
by Andrew Lee Rubinger
Hi guys.
In discussing WebBeans/EJB integration with Pete this week we came
across a few issues I'd like to hash out.
*Guiding Principles*
The points below are based on my view of the following bullets; please
correct if they're inaccurate.
* JSR-299 implementations are treated the same as any client of EJB;
they use/consume EJB as one of the target component models.
* A mechanism EJB makes available to JSR-299 should be available to
everyone.
----
1) EJB does not define an endpoint for SFSB removal outside
business/component method @Remove/remove() and timeout
JSR-299 PR2 6.5 - "When the destroy() method is called, the container
removes the stateful session bean. The @PreDestroy callback must be
invoked by the container."
JSR-318 PFD2 4.6 - "When the client calls a business method of the bean
that has been designated as a Remove method, or a remove method on the
home or component interface, the container invokes PreDestroy lifecycle
callback interceptor method(s) (if any) for the bean instance after the
Remove method completes."
JSR-299 is declaring that "destroy" on a contextual object will invoke a
removeal path not defined by EJB.
----
2) JSR-299 defines activity in the middle of EJB Lifecycle
JSR-299 PR2 6.11 - "When the EJB container creates a new instance of an
EJB, the container must perform the following steps after Java EE
injection has been performed and before the @PostConstruct callback
occurs..."
EJB defines no callback mechanism for a hypothetical @PostInstanciated
before @PostConstruct. Thus there's no hook defined for WB to do its magic.
----
I'd like to open up discussion on either adding these points to EJB 3.1
(a bit late in the game) or revising the JSR-299 spec such that it
doesn't impose upon EJB.
Either way, as I've committed to Pete, I'll be taking on the EJB/WB
integration bits. But I do want to ensure the lines are properly drawn.
If properly scoped, we should have to alter no code under the EJB3
components to support WB.
S,
ALR
--
Andrew Lee Rubinger
Sr. Software Engineer
JBoss, a division of Red Hat, Inc.
http://exitcondition.alrubinger.com
15 years, 8 months
[webbeans-dev] Updated EJB SPI
by Pete Muir
All,
Based on coversations today with ALR and Ken, I've produced a slightly
updated SPI which is better aligned with the EJB lifecycle. You can
read the contracts here:
- http://anonsvn.jboss.org/repos/webbeans/ri/trunk/spi/src/main/java/org/jb...
- resolveEJB(EjbDescriptor<?> descriptor, NamingContext context);
- http://anonsvn.jboss.org/repos/webbeans/ri/trunk/spi/src/main/java/org/jb...
I'm still not convinced I have the terminology right here, so please
suggest changes to signatures as needed :-)
Note that at the moment there is still a discussion about how the SLSB
and singleton lifecycle interacts with JSR299, so I've concentrated on
the SFSB case here - we'll go into more depth on the SLSB/singleton
case once we've clarified our understanding of how JSR299 should behave.
We also discussed in some detail the contract imposed by A2. Session
Bean Interceptor http://docs.jboss.org/webbeans/reference/snapshot/en-US/html/ri-spi.html
ALR said that he would prefer us to register for lifecycle callbacks
from the EJB container programatically, rather than use an EJB
interceptor.
I'll think about the API for this later today, but in essence we would
pass an extra object as part of the resolveEJB call above, which would
implement some callback interface in the Web Beans SPI that allowed us
to listen for at least postConstruct, preInvokeBusinessMethod and
preDestroy. The JBoss-Web Beans integration project would then have to
decorate this with an interface JBoss EJB knows about, and somehow
pass it to JBoss EJB3 for registration.
ALR, do you think we need to do this for the 1.0 of Web Beans, or can
address it for 1.1? I certainly agree that programmatic registration
of an interceptor is less brittle than the current ThreadLocal
approach, but if we can get away with the ThreadLocal for now, it
gives us more time work on a good SPI.
BTW I think a good SPI would be to pass an EJB interceptor through the
resolveEJB method (which is a well known SPI). Then e.g. Glassfish
could register this as a system interceptor, whilst JBoss EJB3 could
adapt this to be lifecycle callbacks...
Best,
--
Pete Muir
http://www.seamframework.org
http://in.relation.to/Bloggers/Pete
15 years, 8 months
[webbeans-dev] Contextual/Non-Contextual EJBs
by Pete Muir
I've been working through in my head how this works, and AFAICT:
* SFSBs may contextual or not-contextual
* SLSBs and singletons should always non-contextual
otherwise there is an ambiguity here
* SLSBs can be allocated from a pool, and are constructed once and
reused and so one which has undergone non-contexutal injection might
be reused as a contextual bean
* singletons are singleton, so again we have the same dilemma (whether
they undergo contextual or non-contextual injection depends on what
they are first requested for)
Am I missing something? If not, then I think the spec should be
explicit regarding this.
Thanks :-)
--
Pete Muir
http://www.seamframework.org
http://in.relation.to/Bloggers/Pete
15 years, 8 months
Re: [webbeans-dev] ri build failure
by Ales Justin
Another jdk6 vs jdk5 issue.
Dunno what's the left-over this time,
as I explicitly deleted target dir in all or ri's sub-dirs. :-(
---
[INFO] Surefire report directory:
C:\projects\web-beans\ri\jboss-tck-runner\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running TestSuite
org.apache.maven.surefire.booter.SurefireExecutionException: Bad version
number in .class file; nested exception is
java.lang.UnsupportedClassVersionError: Bad version number in .class file
java.lang.UnsupportedClassVersionError: Bad version number in .class file
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
Nicklas Karlsson wrote:
> That's strange since I'm at revision 2026 and mvn clean install for
> the ri works for me and the errors you listed shouldn't(tm) occur due
> to simple version differences.
>
> On Mon, Mar 16, 2009 at 9:48 AM, Ales Justin <ales.justin(a)gmail.com> wrote:
>> Yup, looks like some old xsd stuff was still lying around.
>>
>> Deleting impl's target I can now move fwd, but I get this:
>>
>> [INFO] Surefire report directory:
>> C:\projects\web-beans\ri\impl\target\surefire-reports
>>
>> -------------------------------------------------------
>> T E S T S
>> -------------------------------------------------------
>> Running TestSuite
>> 08:43:58,671 WARN [bean.AbstractProducerBean] Executing producer field or
>> method Annotated method on class
>> org.jboss.webbeans.test.unit.lookup.circular.NormalSelfConsumingDependentProducer
>> Method Violation @Produces @SelfConsumingDependent1 public
>> produceViolation();
>> on incomplete declaring bean Application scoped unnamed simple bean
>> org.jboss.webbeans.test.unit.lookup.circular.NormalSelfConsumingDependentProducer,
>> API types = [NormalSelfConsumingDependentProducer, Object], binding types =
>> [@Current] due to cir
>> cular injection
>> 08:43:58,687 WARN [bean.AbstractProducerBean] Executing producer field or
>> method Annotated method on class
>> org.jboss.webbeans.test.unit.lookup.circular.DependentSelfConsumingDependentProducer
>> Method Violation @Produces @SelfConsumingDependent publi
>> c produceViolation();
>> on incomplete declaring bean Dependent unnamed simple bean
>> org.jboss.webbeans.test.unit.lookup.circular.DependentSelfConsumingDependentProducer,
>> API types = [DependentSelfConsumingDependentProducer, Object], binding
>> types = [@Current] due to circul
>> ar injection
>> Tests run: 37, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 4.172 sec
>> <<< FAILURE!
>>
>> Results :
>>
>> Failed tests:
>> testGameGenerator(org.jboss.webbeans.test.examples.ExampleTest)
>>
>> Tests run: 37, Failures: 1, Errors: 0, Skipped: 0
>>
>> [INFO]
>> ------------------------------------------------------------------------
>> [ERROR] BUILD FAILURE
>>
>> Nicklas Karlsson wrote:
>>> Do you get any more info as to which class is failing? The problem is
>>> probably that you are trying to run a Java 6 class with a Java 5
>>> runtime. But since you have never compiled any yourself and classes
>>> shouldn't be checked in, I wonder where it comes from. Do you still
>>> have a xsd package lying around somewhere?
>>>
>>> 2009/3/16 Ales Justin <ales.justin(a)gmail.com>:
>>>> btw: my java home is jdk5
>>>>
>>>> Ales Justin wrote:
>>>>> mvn clean install
>>>>>
>>>>> Or do I need some more exact nuking?
>>>>>
>>>>> Nicklas Karlsson wrote:
>>>>>> There must be some old classes around. Tried cleaning it out first?
>>>>>>
>>>>>> 2009/3/16 Ales Justin <ales.justin(a)gmail.com>:
>>>>>>> Still some version mismatch. :-(
>>>>>>>
>>>>>>> ---
>>>>>>>
>>>>>>> INFO] Surefire report directory:
>>>>>>> C:\projects\web-beans\ri\jboss-tck-runner\target\surefire-reports
>>>>>>>
>>>>>>> ------------------------------------------------------
>>>>>>> T E S T S
>>>>>>> ------------------------------------------------------
>>>>>>> unning TestSuite
>>>>>>> rg.apache.maven.surefire.booter.SurefireExecutionException: Bad
>>>>>>> version
>>>>>>> number in .class file; nested exception is
>>>>>>> java.lang.UnsupportedClassVersionError: Bad version number in .class
>>>>>>> file
>>>>>>>
>>>>>>> Pete Muir wrote:
>>>>>>>> It's moved to extensions/trunk/xsd and depends on java5 now :-)
>>>>>>>>
>>>>>>>> On 15 Mar 2009, at 14:11, Nicklas Karlsson wrote:
>>>>>>>>
>>>>>>>>> Oops, guilty as charged. It's probably because there is a Java 6
>>>>>>>>> dependency. Pete promised (threatened?) to break out the schema XSD
>>>>>>>>> generator into a separate module.
>>>>>>>>> I'm AFK for some time so if anyone else needs a quick fix, feel free
>>>>>>>>> to comment out. Sorry for the hassle.
>>>>>>>>>
>>>>>>>>> On Sun, Mar 15, 2009 at 3:04 PM, Ales Justin <ales.justin(a)gmail.com>
>>>>>>>>> wrote:
>>>>>>>>>> Cannot build ri.
>>>>>>>>>>
>>>>>>>>>> Somebody forgot to commit some lib change
>>>>>>>>>> or is this just me - needing some repo/project nuking?
>>>>>>>>>>
>>>>>>>>>> -----------------------
>>>>>>>>>>
>>>>>>>>>> [INFO] Compiling 183 source files to
>>>>>>>>>> C:\projects\web-beans\ri\impl\target\classes
>>>>>>>>>> [INFO]
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>> [ERROR] BUILD FAILURE
>>>>>>>>>> [INFO]
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>> [INFO] Compilation failure
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[31,35]
>>>>>>>>>> package javax.annotation.processing does not
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[32,19]
>>>>>>>>>> package javax.tools does not exist
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[55,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Filer
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[66,20]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Filer
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[20,32]
>>>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[21,32]
>>>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[22,32]
>>>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[23,32]
>>>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[24,32]
>>>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[46,35]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[58,64]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[71,64]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[88,65]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[24,35]
>>>>>>>>>> package javax.annotation.processing doe
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[25,35]
>>>>>>>>>> package javax.annotation.processing doe
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[26,35]
>>>>>>>>>> package javax.annotation.processing doe
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[27,35]
>>>>>>>>>> package javax.annotation.processing doe
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[28,35]
>>>>>>>>>> package javax.annotation.processing doe
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[29,24]
>>>>>>>>>> package javax.lang.model does not exist
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[30,32]
>>>>>>>>>> package javax.lang.model.element does n
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[31,32]
>>>>>>>>>> package javax.lang.model.element does n
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[32,29]
>>>>>>>>>> package javax.lang.model.type does not
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[33,29]
>>>>>>>>>> package javax.lang.model.type does not
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[34,29]
>>>>>>>>>> package javax.lang.model.util does not
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[49,44]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol: class AbstractProcessor
>>>>>>>>>> public class PackageSchemaGenerator extends AbstractProcessor
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[55,33]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class ProcessingEnvironment
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[62,40]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class TypeElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[62,66]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class RoundEnvironment
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[87,35]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[47,1]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol: class SupportedSourceVersion
>>>>>>>>>> @SupportedSourceVersion(SourceVersion.RELEASE_6)
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[48,1]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol: class SupportedAnnotationTypes
>>>>>>>>>> @SupportedAnnotationTypes("*")
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[126,32]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable StandardLocation
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[184,36]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable StandardLocation
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[48,45]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable Modifier
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[60,6]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class TypeElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[60,33]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class TypeElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[94,6]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class ExecutableElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[94,45]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class ExecutableElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[100,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class VariableElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[57,6]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable super
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[54,4]
>>>>>>>>>> method does not override a method from i
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[67,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[61,4]
>>>>>>>>>> method does not override a method from i
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[89,6]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class TypeElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[89,33]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class TypeElement
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[93,51]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable TypeKind
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[95,24]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class DeclaredType
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[105,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[105,27]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable ElementFilter
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[110,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[110,28]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable ElementFilter
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[115,11]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : class Element
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[115,33]
>>>>>>>>>> cannot find symbol
>>>>>>>>>> symbol : variable ElementFilter
>>>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> [INFO]
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>> [INFO] For more information, run Maven with the -e switch
>>>>>>>>>> [INFO]
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>> [INFO] Total time: 35 seconds
>>>>>>>>>> [INFO] Finished at: Sun Mar 15 14:02:01 CET 2009
>>>>>>>>>> [INFO] Final Memory: 43M/63M
>>>>>>>>>> [INFO]
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>> _______________________________________________
>>>>>>>>>> webbeans-dev mailing list
>>>>>>>>>> webbeans-dev(a)lists.jboss.org
>>>>>>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> ---
>>>>>>>>> Nik
>>>>>>>>>
>>>>>>>>> _______________________________________________
>>>>>>>>> webbeans-dev mailing list
>>>>>>>>> webbeans-dev(a)lists.jboss.org
>>>>>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>>>> --
>>>>>>>> Pete Muir
>>>>>>>> http://www.seamframework.org
>>>>>>>> http://in.relation.to/Bloggers/Pete
>>>>>>>>
>>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> webbeans-dev mailing list
>>>>>>> webbeans-dev(a)lists.jboss.org
>>>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>>>
>>>>>>
>>>
>>>
>
>
>
15 years, 8 months
Re: [webbeans-dev] ri build failure
by Ales Justin
Yup, looks like some old xsd stuff was still lying around.
Deleting impl's target I can now move fwd, but I get this:
[INFO] Surefire report directory:
C:\projects\web-beans\ri\impl\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running TestSuite
08:43:58,671 WARN [bean.AbstractProducerBean] Executing producer field
or method Annotated method on class
org.jboss.webbeans.test.unit.lookup.circular.NormalSelfConsumingDependentProducer
Method Violation @Produces @SelfConsumingDependent1 public
produceViolation();
on incomplete declaring bean Application scoped unnamed simple bean
org.jboss.webbeans.test.unit.lookup.circular.NormalSelfConsumingDependentProducer,
API types = [NormalSelfConsumingDependentProducer, Object], binding
types = [@Current] due to cir
cular injection
08:43:58,687 WARN [bean.AbstractProducerBean] Executing producer field
or method Annotated method on class
org.jboss.webbeans.test.unit.lookup.circular.DependentSelfConsumingDependentProducer
Method Violation @Produces @SelfConsumingDependent publi
c produceViolation();
on incomplete declaring bean Dependent unnamed simple bean
org.jboss.webbeans.test.unit.lookup.circular.DependentSelfConsumingDependentProducer,
API types = [DependentSelfConsumingDependentProducer, Object], binding
types = [@Current] due to circul
ar injection
Tests run: 37, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 4.172
sec <<< FAILURE!
Results :
Failed tests:
testGameGenerator(org.jboss.webbeans.test.examples.ExampleTest)
Tests run: 37, Failures: 1, Errors: 0, Skipped: 0
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD FAILURE
Nicklas Karlsson wrote:
> Do you get any more info as to which class is failing? The problem is
> probably that you are trying to run a Java 6 class with a Java 5
> runtime. But since you have never compiled any yourself and classes
> shouldn't be checked in, I wonder where it comes from. Do you still
> have a xsd package lying around somewhere?
>
> 2009/3/16 Ales Justin <ales.justin(a)gmail.com>:
>> btw: my java home is jdk5
>>
>> Ales Justin wrote:
>>> mvn clean install
>>>
>>> Or do I need some more exact nuking?
>>>
>>> Nicklas Karlsson wrote:
>>>> There must be some old classes around. Tried cleaning it out first?
>>>>
>>>> 2009/3/16 Ales Justin <ales.justin(a)gmail.com>:
>>>>> Still some version mismatch. :-(
>>>>>
>>>>> ---
>>>>>
>>>>> INFO] Surefire report directory:
>>>>> C:\projects\web-beans\ri\jboss-tck-runner\target\surefire-reports
>>>>>
>>>>> ------------------------------------------------------
>>>>> T E S T S
>>>>> ------------------------------------------------------
>>>>> unning TestSuite
>>>>> rg.apache.maven.surefire.booter.SurefireExecutionException: Bad version
>>>>> number in .class file; nested exception is
>>>>> java.lang.UnsupportedClassVersionError: Bad version number in .class
>>>>> file
>>>>>
>>>>> Pete Muir wrote:
>>>>>> It's moved to extensions/trunk/xsd and depends on java5 now :-)
>>>>>>
>>>>>> On 15 Mar 2009, at 14:11, Nicklas Karlsson wrote:
>>>>>>
>>>>>>> Oops, guilty as charged. It's probably because there is a Java 6
>>>>>>> dependency. Pete promised (threatened?) to break out the schema XSD
>>>>>>> generator into a separate module.
>>>>>>> I'm AFK for some time so if anyone else needs a quick fix, feel free
>>>>>>> to comment out. Sorry for the hassle.
>>>>>>>
>>>>>>> On Sun, Mar 15, 2009 at 3:04 PM, Ales Justin <ales.justin(a)gmail.com>
>>>>>>> wrote:
>>>>>>>> Cannot build ri.
>>>>>>>>
>>>>>>>> Somebody forgot to commit some lib change
>>>>>>>> or is this just me - needing some repo/project nuking?
>>>>>>>>
>>>>>>>> -----------------------
>>>>>>>>
>>>>>>>> [INFO] Compiling 183 source files to
>>>>>>>> C:\projects\web-beans\ri\impl\target\classes
>>>>>>>> [INFO]
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------
>>>>>>>> [ERROR] BUILD FAILURE
>>>>>>>> [INFO]
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------
>>>>>>>> [INFO] Compilation failure
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[31,35]
>>>>>>>> package javax.annotation.processing does not
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[32,19]
>>>>>>>> package javax.tools does not exist
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[55,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Filer
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[66,20]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Filer
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[20,32]
>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[21,32]
>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[22,32]
>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[23,32]
>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[24,32]
>>>>>>>> package javax.lang.model.element does not e
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[46,35]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[58,64]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[71,64]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[88,65]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[24,35]
>>>>>>>> package javax.annotation.processing doe
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[25,35]
>>>>>>>> package javax.annotation.processing doe
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[26,35]
>>>>>>>> package javax.annotation.processing doe
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[27,35]
>>>>>>>> package javax.annotation.processing doe
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[28,35]
>>>>>>>> package javax.annotation.processing doe
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[29,24]
>>>>>>>> package javax.lang.model does not exist
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[30,32]
>>>>>>>> package javax.lang.model.element does n
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[31,32]
>>>>>>>> package javax.lang.model.element does n
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[32,29]
>>>>>>>> package javax.lang.model.type does not
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[33,29]
>>>>>>>> package javax.lang.model.type does not
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[34,29]
>>>>>>>> package javax.lang.model.util does not
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[49,44]
>>>>>>>> cannot find symbol
>>>>>>>> symbol: class AbstractProcessor
>>>>>>>> public class PackageSchemaGenerator extends AbstractProcessor
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[55,33]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class ProcessingEnvironment
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[62,40]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class TypeElement
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[62,66]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class RoundEnvironment
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[87,35]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[47,1]
>>>>>>>> cannot find symbol
>>>>>>>> symbol: class SupportedSourceVersion
>>>>>>>> @SupportedSourceVersion(SourceVersion.RELEASE_6)
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[48,1]
>>>>>>>> cannot find symbol
>>>>>>>> symbol: class SupportedAnnotationTypes
>>>>>>>> @SupportedAnnotationTypes("*")
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[126,32]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable StandardLocation
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\XSDHelper.java:[184,36]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable StandardLocation
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.XSDHelper
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[48,45]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable Modifier
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[60,6]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class TypeElement
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[60,33]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class TypeElement
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[94,6]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class ExecutableElement
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[94,45]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class ExecutableElement
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\helpers\DataSetter.java:[100,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class VariableElement
>>>>>>>> location: class org.jboss.webbeans.xsd.helpers.DataSetter
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[57,6]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable super
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[54,4]
>>>>>>>> method does not override a method from i
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[67,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[61,4]
>>>>>>>> method does not override a method from i
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[89,6]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class TypeElement
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[89,33]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class TypeElement
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[93,51]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable TypeKind
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[95,24]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class DeclaredType
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[105,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[105,27]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable ElementFilter
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[110,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[110,28]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable ElementFilter
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[115,11]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : class Element
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> C:\projects\web-beans\ri\impl\src\main\java\org\jboss\webbeans\xsd\PackageSchemaGenerator.java:[115,33]
>>>>>>>> cannot find symbol
>>>>>>>> symbol : variable ElementFilter
>>>>>>>> location: class org.jboss.webbeans.xsd.PackageSchemaGenerator
>>>>>>>>
>>>>>>>>
>>>>>>>> [INFO]
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------
>>>>>>>> [INFO] For more information, run Maven with the -e switch
>>>>>>>> [INFO]
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------
>>>>>>>> [INFO] Total time: 35 seconds
>>>>>>>> [INFO] Finished at: Sun Mar 15 14:02:01 CET 2009
>>>>>>>> [INFO] Final Memory: 43M/63M
>>>>>>>> [INFO]
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------
>>>>>>>> _______________________________________________
>>>>>>>> webbeans-dev mailing list
>>>>>>>> webbeans-dev(a)lists.jboss.org
>>>>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> ---
>>>>>>> Nik
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> webbeans-dev mailing list
>>>>>>> webbeans-dev(a)lists.jboss.org
>>>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>> --
>>>>>> Pete Muir
>>>>>> http://www.seamframework.org
>>>>>> http://in.relation.to/Bloggers/Pete
>>>>>>
>>>>>>
>>>>> _______________________________________________
>>>>> webbeans-dev mailing list
>>>>> webbeans-dev(a)lists.jboss.org
>>>>> https://lists.jboss.org/mailman/listinfo/webbeans-dev
>>>>>
>>>>
>>>>
>
>
>
15 years, 8 months