Thanks for your reply, Ron.
No, I don't have Maven Repo. My local .M2 repo talks directly to Maven
Repository (http://mvnrepository.com/)
You mentioned about Nexus. I think the author is also promoting XBean. Do i
need to install Nexus or XBean to resolve this issue?
According to the book, the command to launch ActiveMQ is:
"activemq
xbean:src/main/resources/org/apache/activemq/book/ch2/activemq.xml"
And here is the settings.xml & activemq.xml:
-----------------------------------------------------------------------
settings.xml
IEBrowserProxySettings -> IE -> Tools -> Internet Options -> Connections ->
LAN Settings -> Advanced
-----------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<settings>
        <proxies>
               <proxy>
                  <active>true</active>
                  <protocol>http</protocol>
                  <host>myHostInMyIEBrowserProxySettings</host>
                  <port>myPortInMyIEBrowserProxySettings</port>
                  <username>myWinLoginId</username>
                  <password>myWinLoginPwd</password>
                  
<nonProxyHosts>myExceptionsInMyIEBrowserProxySettings</nonProxyHosts>
               </proxy>
        </proxies>
</settings>
-----------------------------------------------------------------------
activemq.xml
-----------------------------------------------------------------------
<beans
  xmlns="http://www.springframework.org/schema/beans";
  xmlns:amq="http://activemq.apache.org/schema/core";
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  http://activemq.apache.org/schema/core
http://activemq.apache.org/schema/core/activemq-core.xsd
  http://activemq.apache.org/camel/schema/spring
http://activemq.apache.org/camel/schema/spring/camel-spring.xsd";>

  
  <bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
  
  <broker xmlns="http://activemq.apache.org/schema/core";
brokerName="localhost" dataDirectory="${activemq.base}/data">
  
    
    <transportConnectors>
       <transportConnector name="openwire" uri="tcp://localhost:61616" />
    </transportConnectors>
  </broker>
</beans>



--
View this message in context: 
http://maven.40175.n5.nabble.com/Could-not-transfer-metadata-org-springframework-spring-core-maven-metadata-xml-tp5711441p5711512.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to