On 10/4/06, Wendy Smoak <[EMAIL PROTECTED]> wrote:
>
> Do you know if it could be the same problem that affected my mvn
> compile command ?

This doesn't seem likely, but we would need to see the command you're
using and the error messages.  You mentioned adding things to your
local repository, so we'll need to know exactly how you did that in
order to help.


Hi

Well, this is my problem.

My pom file is:

----------------
<project xmlns="http://maven.apache.org/POM/4.0.0";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd";>
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.bs.notifications</groupId>
        <artifactId>notifications-ws</artifactId>
        <packaging>jar</packaging>
        <version>1.0-SNAPSHOT</version>
        <name>Web Services of Notifications application</name>
        <url></url>
        <dependencies>
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>3.8.1</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>axis</groupId>
                        <artifactId>axis</artifactId>
                        <version>1.3</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>log4j</groupId>
                        <artifactId>log4j</artifactId>
                        <version>1.2.13</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>jboss</groupId>
                        <artifactId>jboss-client</artifactId>
                        <version>4.0.3</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>jboss</groupId>
                        <artifactId>jboss-common-client</artifactId>
                        <version>4.0.3</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>jboss</groupId>
                        <artifactId>jnp-client</artifactId>
                        <version>4.0.2</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>tomcat</groupId>
                        <artifactId>servlet</artifactId>
                        <version>4.0.6</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>iBatis</groupId>
                        <artifactId>ibatis-common</artifactId>
                        <version>2.2.0</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>iBatis</groupId>
                        <artifactId>ibatis-dao</artifactId>
                        <version>2.2.0</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>iBatis</groupId>
                        <artifactId>ibatis-sqlmap</artifactId>
                        <version>2.2.0</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>activemq</groupId>
                        <artifactId>activemq-core</artifactId>
                        <version>4.0.1</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>activemq</groupId>
                        <artifactId>activemq-console</artifactId>
                        <version>4.0.1</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>activemq</groupId>
                        <artifactId>activeio-core</artifactId>
                        <version>3.0</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>activemq</groupId>
                        <artifactId>mx4j</artifactId>
                        <version>2.1.1</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>activemq</groupId>
                        <artifactId>backport-util-concurrent</artifactId>
                        <version>2.1</version>
                        <scope>main</scope>
                </dependency>
                <dependency>
                        <groupId>geronimo</groupId>
                        <artifactId>geronimo-management</artifactId>
                        <version>1.0</version>
                        <scope>main</scope>
                </dependency>
        </dependencies>
</project>

--------------------------

My settings file:

---------------------
<settings>
        <localRepository>w:/mvn-repository</localRepository>
        <interactiveMode>true</interactiveMode>
        <proxies>
        <proxy>
                <id>optional</id>
                <active>true</active>
                <protocol>http</protocol>
                <host>172.31.22.1</host>
                <port>8080</port>
        </proxy>
        </proxies>
        <mirrors>
        <mirror>
                      <id>lsu.edu</id>
                      <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
                      <mirrorOf>central</mirrorOf>
                      <!-- United States, Louisiana -->
        </mirror>
        </mirrors>
</settings>
-------------------

and my repository is:

--------------
W:\mvn-repository>tree
Listado de rutas de directorios para el volumen ASF9
El número de serie del volumen es 0012FC94 02D6:4A76
W:.
├───activemq
│   ├───activeio-core
│   │   └───3.0
│   ├───activemq-console
│   │   └───4.0.1
│   ├───activemq-core
│   │   └───4.0.1
│   ├───backport-util-concurrent
│   │   └───2.1
│   └───mx4j
│       └───2.1.1
├───axis
│   ├───axis
│   │   └───1.3
│   ├───axis-jaxrpc
│   │   └───1.3
│   └───axis-saaj
│       └───1.3
├───classworlds
│   └───classworlds
│       └───1.1-alpha-2
├───commons-collections
│   └───commons-collections
│       └───2.0
├───commons-discovery
│   └───commons-discovery
│       └───0.2
├───commons-jelly
│   └───commons-jelly-tags-velocity
│       └───1.0
├───commons-logging
│   ├───commons-logging
│   │   ├───1.0.3
│   │   └───1.0.4
│   └───commons-logging-api
│       └───1.0.4
├───dom4j
│   └───dom4j
│       └───1.6.1
├───geronimo
│   └───geronimo-management
│       └───1.0
├───iBatis
│   ├───ibatis-common
│   │   └───2.2.0
│   ├───ibatis-dao
│   │   └───2.2.0
│   └───ibatis-sqlmap
│       └───2.2.0
├───jboss
│   ├───jboss-client
│   │   ├───4.0.2
│   │   └───4.0.3
│   ├───jboss-common-client
│   │   ├───3.2.3
│   │   └───4.0.3
│   └───jnp-client
│       └───4.0.2
├───junit
│   └───junit
│       └───3.8.1
├───log4j
│   └───log4j
│       └───1.2.13
├───org
│   ├───apache
│   │   ├───apache
│   │   │   └───1
│   │   ├───geronimo
│   │   │   └───specs
│   │   │       └───geronimo-j2ee-management_1.0_spec
│   │   │           └───1.0
│   │   └───maven
│   │       ├───archetype
│   │       │   ├───maven-archetype
│   │       │   │   └───1.0-alpha-4
│   │       │   ├───maven-archetype-core
│   │       │   │   └───1.0-alpha-4
│   │       │   ├───maven-archetype-creator
│   │       │   │   └───1.0-alpha-4
│   │       │   └───maven-archetype-model
│   │       │       └───1.0-alpha-4
│   │       ├───archetypes
│   │       │   └───maven-archetype-quickstart
│   │       │       └───1.0-alpha-4
│   │       ├───maven
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-artifact
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-artifact-manager
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-model
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-parent
│   │       │   └───1
│   │       ├───maven-plugin-api
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-profile
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-project
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───maven-repository-metadata
│   │       │   ├───2.0
│   │       │   ├───2.0-beta-1
│   │       │   └───2.0.1
│   │       ├───plugins
│   │       │   ├───maven-ant-plugin
│   │       │   │   └───2.0-beta-1
│   │       │   ├───maven-archetype-plugin
│   │       │   │   └───1.0-alpha-4
│   │       │   ├───maven-compiler-plugin
│   │       │   │   └───2.0.1
│   │       │   ├───maven-eclipse-plugin
│   │       │   │   └───2.2
│   │       │   ├───maven-install-plugin
│   │       │   │   └───2.1
│   │       │   ├───maven-plugin-parent
│   │       │   │   ├───2.0
│   │       │   │   └───2.0-beta-1
│   │       │   ├───maven-plugins
│   │       │   │   └───1
│   │       │   └───maven-resources-plugin
│   │       │       └───2.2
│   │       └───wagon
│   │           ├───wagon
│   │           │   └───1.0-alpha-4
│   │           └───wagon-provider-api
│   │               ├───1.0-alpha-4
│   │               └───1.0-alpha-5
│   └───codehaus
│       ├───mojo
│       └───plexus
│           ├───plexus
│           │   ├───1.0.4
│           │   └───1.0.5
│           ├───plexus-archiver
│           │   └───1.0-alpha-5
│           ├───plexus-compiler
│           │   └───1.5.2
│           ├───plexus-compiler-api
│           │   └───1.5.2
│           ├───plexus-compiler-javac
│           │   └───1.5.2
│           ├───plexus-compiler-manager
│           │   └───1.5.2
│           ├───plexus-compilers
│           │   └───1.5.2
│           ├───plexus-components
│           │   ├───1.1.4
│           │   └───1.1.5
│           ├───plexus-container-default
│           │   ├───1.0-alpha-7
│           │   ├───1.0-alpha-8
│           │   └───1.0-alpha-9
│           ├───plexus-containers
│           │   └───1.0.3
│           ├───plexus-utils
│           │   ├───1.0.4
│           │   ├───1.0.5
│           │   └───1.1
│           └───plexus-velocity
│               └───1.1.2
├───oro
│   └───oro
│       └───2.0.8
├───plexus
│   ├───plexus-container-default
│   │   └───1.0-alpha-6
│   ├───plexus-containers
│   │   └───1.0.2
│   ├───plexus-root
│   │   └───1.0.3
│   └───plexus-utils
│       ├───1.0.2
│       └───1.0.3
├───tomcat
│   └───servlet
│       └───4.0.6
├───velocity
│   ├───velocity
│   │   └───1.4
│   └───velocity-dep
│       └───1.4
├───wsdl4j
│   └───wsdl4j
│       └───1.5.1
└───xml-apis
   └───xml-apis
       └───1.0.b2

--------------


When I run mvn compile I got:


----------------

D:\workspaces\notifications\com.bs.notifications.ws>mvn compile
[INFO] Scanning for projects...
[INFO] -------------------------------------------------------------------------
---
[INFO] Building Web Services of Notifications application
[INFO]    task-segment: [compile]
[INFO] -------------------------------------------------------------------------
---
[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/jboss/jboss-client/
4.0.3/jboss-client-4.0.3.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/activemq/activemq-c
ore/4.0.1/activemq-core-4.0.1.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/iBatis/ibatis-dao/2
.2.0/ibatis-dao-2.2.0.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/activemq/activeio-c
ore/3.0/activeio-core-3.0.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/iBatis/ibatis-commo
n/2.2.0/ibatis-common-2.2.0.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/activemq/backport-u
til-concurrent/2.1/backport-util-concurrent-2.1.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/iBatis/ibatis-sqlma
p/2.2.0/ibatis-sqlmap-2.2.0.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/activemq/mx4j/2.1.1
/mx4j-2.1.1.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/jboss/jboss-common-
client/4.0.3/jboss-common-client-4.0.3.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
Downloading: http://ibiblio.lsu.edu/main/pub/packages/maven2/activemq/activemq-c
onsole/4.0.1/activemq-console-4.0.1.pom
[WARNING] Unable to get resource from repository central (http://repo1.maven.org
/maven2)
[INFO] [compiler:compile]
Compiling 24 source files to D:\workspaces\notifications\com.bs.notifications.ws
\target\classes
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[14,27] package org.apache.activemq does not
exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[15,24] package org.apache.log4j does not exi
st

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[27,29] cannot resolve symbol
symbol  : class Logger
location: class com.bs.proteo.notifications.mom.AdminHelper

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[9,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[10,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[11,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[12,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[13,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[14,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[15,17] package javax.jms does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[19,27] package org.apache.activemq does not ex
ist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[20,24] package org.apache.log4j does not exist


D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[27,19] cannot resolve symbol
symbol  : class Logger
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[33,12] cannot resolve symbol
symbol  : class Connection
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[34,12] cannot resolve symbol
symbol  : class Session
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[6,24] package org.apache.
log4j does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[7,24] package org.apache.
log4j does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[9,21] package javax.servl
et does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[10,21] package javax.serv
let does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[19,51] cannot resolve sym
bol
symbol  : class ServletContextListener
location: class com.bs.proteo.notifications.service.NotificationServiceManager

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[21,19] cannot resolve sym
bol
symbol  : class Logger
location: class com.bs.proteo.notifications.service.NotificationServiceManager

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[23,35] cannot resolve sym
bol
symbol  : class ServletContextEvent
location: class com.bs.proteo.notifications.service.NotificationServiceManager

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[53,33] cannot resolve sym
bol
symbol  : class ServletContextEvent
location: class com.bs.proteo.notifications.service.NotificationServiceManager

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[8,35] package com.ibatis.common.resource
s does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[9,32] package com.ibatis.sqlmap.client d
oes not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[10,32] package com.ibatis.sqlmap.client
does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[18,29] cannot resolve symbol
symbol  : class SqlMapClient
location: class com.bs.notifications.sql.NotificationsSqlConfig

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[33,22] cannot resolve symbol
symbol  : class SqlMapClient
location: class com.bs.notifications.sql.NotificationsSqlConfig

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\util\DBConnection.java:[9,24] package org.apache.log4j does not ex
ist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\util\DBConnection.java:[22,19] cannot resolve symbol
symbol  : class Logger
location: class com.bs.proteo.notifications.util.DBConnection

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[15,24] package org.
apache.log4j does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[35,32] package com.
ibatis.sqlmap.client does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[36,32] package com.
ibatis.sqlmap.client does not exist

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[51,29] cannot resol
ve symbol
symbol  : class Logger
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[27,45] cannot resolve symbol
symbol  : variable Logger
location: class com.bs.proteo.notifications.mom.AdminHelper

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[186,16] cannot resolve symbol
symbol  : class ActiveMQConnectionFactory
location: class com.bs.proteo.notifications.mom.AdminHelper

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\AdminHelper.java:[189,48] cannot resolve symbol
symbol  : class ActiveMQConnectionFactory
location: class com.bs.proteo.notifications.mom.AdminHelper

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[27,35] cannot resolve symbol
symbol  : variable Logger
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[50,16] cannot resolve symbol
symbol  : class ActiveMQConnectionFactory
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[50,48] cannot resolve symbol
symbol  : class ActiveMQConnectionFactory
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[65,58] cannot resolve symbol
symbol  : variable Session
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[69,17] cannot resolve symbol
symbol  : class JMSException
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[98,16] cannot resolve symbol
symbol  : class Destination
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[98,43] cannot resolve symbol
symbol  : class Destination
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[108,16] cannot resolve symbol
symbol  : class MessageProducer
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[108,44] cannot resolve symbol
symbol  : class MessageProducer
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[114,50] cannot resolve symbol
symbol  : variable DeliveryMode
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\mom\Publisher.java:[122,16] cannot resolve symbol
symbol  : class TextMessage
location: class com.bs.proteo.notifications.mom.Publisher

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationServiceManager.java:[21,35] cannot resolve sym
bol
symbol  : variable Logger
location: class com.bs.proteo.notifications.service.NotificationServiceManager

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[24,40] cannot resolve symbol
symbol  : variable Resources
location: class com.bs.notifications.sql.NotificationsSqlConfig

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\notific
ations\sql\NotificationsSqlConfig.java:[25,33] cannot resolve symbol
symbol  : variable SqlMapClientBuilder
location: class com.bs.notifications.sql.NotificationsSqlConfig

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\util\DBConnection.java:[22,35] cannot resolve symbol
symbol  : variable Logger
location: class com.bs.proteo.notifications.util.DBConnection

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[51,45] cannot resol
ve symbol
symbol  : variable Logger
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[78,24] cannot resol
ve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[121,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[179,16] cannot reso
lve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[184,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[319,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[368,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[405,16] cannot reso
lve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[408,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[503,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[546,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[614,16] cannot reso
lve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[617,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[679,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[715,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[765,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[806,16] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[858,16] cannot reso
lve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[861,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[913,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[946,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[986,24] cannot reso
lve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1027,16] cannot res
olve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1030,24] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1089,24] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1127,24] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1172,16] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1217,16] cannot res
olve symbol
symbol  : class SqlMapSession
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1227,24] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl

D:\workspaces\notifications\com.bs.notifications.ws\src\main\java\com\bs\proteo\
notifications\service\NotificationsPortSoapBindingImpl.java:[1327,24] cannot res
olve symbol
symbol  : class SqlMapClient
location: class com.bs.proteo.notifications.service.NotificationsPortSoapBinding
Impl


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10 seconds
[INFO] Finished at: Thu Oct 05 09:54:46 CEST 2006
[INFO] Final Memory: 3M/9M
[INFO] ------------------------------------------------------------------------
La sintaxis del comando no es correcta.

---------------


As I´ve declared dependencies correctly and my repo is right too I
couldn´t understand why I receive a lot of  "cannot resolve symbol"
messages.

Also, I always receive as final message "command syntax invalid", no
matter if the command was successful or not.

Thanks in advance

J

Reply via email to