These are "normal" and you'll notice the build continues after that.  It's a
side-effect of using the apt-plugin before all classes have been generated.

alex


On 1/19/07, Viraf Bankwalla <[EMAIL PROTECTED]> wrote:

I am getting the following error in trying to build ode.  I am using JDK
1.5 on WinXP and have the latest sources (trunk).  Is anyone else facing
the same problem ?

Thanks.


[INFO]
----------------------------------------------------------------------------
[INFO] Building ODE :: Java Concurrent Objects (JACOB)
[INFO]    task-segment: [install]
[INFO]
----------------------------------------------------------------------------
[WARNING] POM for 'xstream:xstream:pom:1.2:compile' is invalid. It will be
ignored for artifact resolution. Reason: Not a v4.0.0 POM.
[INFO] [apt:execute {execution: default}]
[ERROR]
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrinter.java:22:
cannot find symbol
symbol  : class SynchChannel
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannel;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrinter.java:23:
cannot find symbol
symbol  : class SynchChannelListener
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannelListener;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrinter.java:37:
cannot find symbol
symbol  : class SynchPrintChannel
location: class
org.apache.ode.jacob.examples.synch.SynchPrinter.SystemPrinter
        private SynchPrintChannel _self;
                ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrinter.java:39:
cannot find symbol
symbol  : class SynchPrintChannel
location: class
org.apache.ode.jacob.examples.synch.SynchPrinter.SystemPrinter
        public SystemPrinter(SynchPrintChannel self) {
                             ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/cell/CELL_.java:34:
cannot find symbol
symbol  : class CellChannel
location: class org.apache.ode.jacob.examples.cell.CELL_<T>
    private CellChannel _self;
                ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/cell/CELL_.java:38:
cannot find symbol
symbol  : class CellChannel
location: class org.apache.ode.jacob.examples.cell.CELL_<T>
    public CELL_(CellChannel self, T val) {
                 ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrint.java:21:
cannot find symbol
symbol  : class SynchChannel
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannel;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/synch/SynchPrint.java:32:
cannot find symbol
symbol  : class SynchChannel
location: interface org.apache.ode.jacob.examples.synch.SynchPrint
  public SynchChannel print(String msg);
         ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/NaturalNumberStream.java:21:
cannot find symbol
symbol  : class SynchChannel
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannel;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/NaturalNumberStream.java:33:
cannot find symbol
symbol  : class SynchChannel
location: interface
org.apache.ode.jacob.examples.eratosthenes.NaturalNumberStream
  public void val(int n, SynchChannel ret);
                         ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:22:
cannot find symbol
symbol  : class SynchChannel
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannel;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:23:
cannot find symbol
symbol  : class SynchChannelListener
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannelListener;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:64:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Counter
    private NaturalNumberStreamChannel _out;
            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:67:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Counter
    public Counter(NaturalNumberStreamChannel out, int n) {
                   ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:96:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Head
    NaturalNumberStreamChannel _in;
    ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:97:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Head
    NaturalNumberStreamChannel _primes;
    ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:99:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Head
    public Head(NaturalNumberStreamChannel in, NaturalNumberStreamChannel
primes) {
                ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:99:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Head
    public Head(NaturalNumberStreamChannel in, NaturalNumberStreamChannel
primes) {
                                               ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:127:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Print
    private NaturalNumberStreamChannel _in;
            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:128:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class org.apache.ode.jacob.examples.eratosthenes.Sieve.Print
    public Print(NaturalNumberStreamChannel in) {
                 ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:157:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class
org.apache.ode.jacob.examples.eratosthenes.Sieve.PrimeFilter
    private NaturalNumberStreamChannel _in;
            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:158:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class
org.apache.ode.jacob.examples.eratosthenes.Sieve.PrimeFilter
    private NaturalNumberStreamChannel _out;
            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:160:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class
org.apache.ode.jacob.examples.eratosthenes.Sieve.PrimeFilter
    public PrimeFilter(int prime, NaturalNumberStreamChannel in,
NaturalNumberStreamChannel out) {
                                  ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/eratosthenes/Sieve.java:160:
cannot find symbol
symbol  : class NaturalNumberStreamChannel
location: class
org.apache.ode.jacob.examples.eratosthenes.Sieve.PrimeFilter
    public PrimeFilter(int prime, NaturalNumberStreamChannel in,
NaturalNumberStreamChannel out) {
                                                                 ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/sequence/Sequence.java:22:
cannot find symbol
symbol  : class SynchChannel
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannel;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/sequence/Sequence.java:23:
cannot find symbol
symbol  : class SynchChannelListener
location: package org.apache.ode.jacob
import org.apache.ode.jacob.SynchChannelListener;
                            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/sequence/Sequence.java:31:
cannot find symbol
symbol  : class SynchChannel
location: class org.apache.ode.jacob.examples.sequence.Sequence
    private SynchChannel _done;
            ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/sequence/Sequence.java:39:
cannot find symbol
symbol  : class SynchChannel
location: class org.apache.ode.jacob.examples.sequence.Sequence
    public Sequence(int steps, SynchChannel done) {
                               ^
E:/OpenSource/apache/ode/jacob/src/main/java/org/apache/ode/jacob/examples/sequence/Sequence.java:73:
cannot find symbol
symbol  : class SynchChannel
location: class org.apache.ode.jacob.examples.sequence.Sequence
    protected abstract JacobRunnable doStep(int step, SynchChannel done);
                                                      ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\synch\SynchPrintChannel.java:19:
cannot find symbol
symbol  : class Channel
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.Channel,
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\synch\SynchPrintChannel.java:20:
cannot find symbol
symbol  : class SynchPrint
location: package org.apache.ode.jacob.examples.synch
            org.apache.ode.jacob.examples.synch.SynchPrint
                                               ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\eratosthenes\NaturalNumberStreamChannelListener.java:22:
cannot find symbol
symbol  : class ChannelListener
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.ChannelListener<
org.apache.ode.jacob.examples.eratosthenes.NaturalNumberStreamChannel>
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\eratosthenes\NaturalNumberStreamChannel.java:19:
cannot find symbol
symbol  : class Channel
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.Channel,
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\eratosthenes\NaturalNumberStreamChannel.java:20:
cannot find symbol
symbol  : class NaturalNumberStream
location: package org.apache.ode.jacob.examples.eratosthenes
            org.apache.ode.jacob.examples.eratosthenes.NaturalNumberStream
                                                      ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\eratosthenes\NaturalNumberStreamChannelListener.java:23:
cannot find symbol
symbol  : class NaturalNumberStream
location: package org.apache.ode.jacob.examples.eratosthenes
    implements
org.apache.ode.jacob.examples.eratosthenes.NaturalNumberStream
                                                         ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\cell\CellChannelListener.java:22:
cannot find symbol
symbol  : class ChannelListener
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.ChannelListener<
org.apache.ode.jacob.examples.cell.CellChannel>
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\cell\CellChannel.java:19:
cannot find symbol
symbol  : class Channel
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.Channel,
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\cell\CellChannel.java:20:
cannot find symbol
symbol  : class Cell
location: package org.apache.ode.jacob.examples.cell
            org.apache.ode.jacob.examples.cell.Cell
                                              ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\cell\CellChannelListener.java:23:
cannot find symbol
symbol  : class Cell
location: package org.apache.ode.jacob.examples.cell
    implements org.apache.ode.jacob.examples.cell.Cell
                                                 ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\SynchChannel.java:19:
cannot find symbol
symbol  : class Channel
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.Channel,
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\SynchChannel.java:20:
cannot find symbol
symbol  : class Synch
location: package org.apache.ode.jacob
            org.apache.ode.jacob.Synch
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\ValChannel.java:19:
cannot find symbol
symbol  : class Channel
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.Channel,
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\ValChannel.java:20:
cannot find symbol
symbol  : class Val
location: package org.apache.ode.jacob
            org.apache.ode.jacob.Val
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\ValChannelListener.java:22:
cannot find symbol
symbol  : class ChannelListener
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.ChannelListener<
org.apache.ode.jacob.ValChannel>
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\ValChannelListener.java:23:
cannot find symbol
symbol  : class Val
location: package org.apache.ode.jacob
    implements org.apache.ode.jacob.Val
                                   ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\synch\SynchPrintChannelListener.java:22:
cannot find symbol
symbol  : class ChannelListener
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.ChannelListener<
org.apache.ode.jacob.examples.synch.SynchPrintChannel>
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\examples\synch\SynchPrintChannelListener.java:23:
cannot find symbol
symbol  : class SynchPrint
location: package org.apache.ode.jacob.examples.synch
    implements org.apache.ode.jacob.examples.synch.SynchPrint
                                                  ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\SynchChannelListener.java:22:
cannot find symbol
symbol  : class ChannelListener
location: package org.apache.ode.jacob
    extends org.apache.ode.jacob.ChannelListener<
org.apache.ode.jacob.SynchChannel>
                                ^
E:\OpenSource\apache\ode\jacob\target\generated-sources\apt\org\apache\ode\jacob\SynchChannelListener.java:23:
cannot find symbol
symbol  : class Synch
location: package org.apache.ode.jacob
    implements org.apache.ode.jacob.Synch
                                   ^

[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] Resource directory does not exist:
E:\OpenSource\apache\ode\jacob\src\main\resources
[INFO] Copying 0 resource
[WARNING] POM for 'xstream:xstream:pom:1.2:compile' is invalid. It will be
ignored for artifact resolution. Reason: Not a v4.0.0 POM.
[INFO] [compiler:compile]
[INFO] Compiling 47 source files to
E:\OpenSource\apache\ode\jacob\target\classes
[INFO] [resources:testResources]
[INFO] Using default encoding to copy filtered resources.
[INFO] Resource directory does not exist:
E:\OpenSource\apache\ode\jacob\src\test\resources
[WARNING] POM for 'xstream:xstream:pom:1.2:compile' is invalid. It will be
ignored for artifact resolution. Reason: Not a v4.0.0 POM.
[INFO] [compiler:testCompile]
[INFO] Not compiling test sources
[WARNING] POM for 'xstream:xstream:pom:1.2:compile' is invalid. It will be
ignored for artifact resolution. Reason: Not a v4.0.0 POM.
[INFO] [surefire:test]
[INFO] Tests are skipped.
[INFO] [jar:jar]
[INFO] Building jar: E:\OpenSource\apache\ode\jacob\target\ode-
jacob-2.0-SNAPSHOT.jar
[INFO] [install:install]



---------------------------------
Now that's room service! Choose from over 150,000 hotels
in 45,000 destinations on Yahoo! Travel to find your fit.

  • Build Errors Viraf Bankwalla
    • Re: Build Errors Alex Boisvert

Reply via email to