Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to flesh out a pom file for a tutorial I am following and keep getting errors with my pom file. I am not sure what to do next because I think I have all of the versioning correct but the following errors keeps happening:

Failed to execute goal on project camel-spring-example: Could not resolve dependencies for project org.apache.camel:camel-spring-example:war:1.0-SNAPSHOT: The following artifacts could not be resolved: org.springframework:spring-web:jar:3.0.7, javax.jms:jar:1.1, com.sunjdmk:jmxtools:jar:1.2.1, com.sun.jmx:jmxri:jar:1.2.1, org.apache.camel:camel-test:jar:1.4.0: Failure to find org.springframework:spring-web:jar:3.0.7 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central as elapsed or updates are forced."

Does anyone have any idea how I can fix this?

POM.xml is below

<?xml version="1.0"?>
<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>org.apache.camel</groupId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>
  <artifactId>camel-spring-example</artifactId>
  <name>Camel :: Example :: Report Incident</name>
  <properties>
    <cxf-version>2.6.1</cxf-version>
    <jetty-version>6.1.10</jetty-version>
    <camel-version>1.4.0</camel-version>
    <spring-version>3.0.7</spring-version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-core</artifactId>
      <version>${camel-version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-spring</artifactId>
      <version>${camel-version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-cxf</artifactId>
      <version>${camel-version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-velocity</artifactId>
      <version>${camel-version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-mail</artifactId>
      <version>${camel-version}</version>
    </dependency>
    <!--
   we make use of spring ContextLoaderListener to launch Camel 
   -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>${spring-version}</version>
    </dependency>
    <!--
   mock mail server so we do not send an email for real 
  -->
    <dependency>
      <groupId>org.jvnet.mock-javamail</groupId>
      <artifactId>mock-javamail</artifactId>
      <version>1.7</version>
      <exclusions>
        <exclusion>
          <groupId>javax.mail</groupId>
          <artifactId>mail</artifactId>
        </exclusion>
      </exclusions>
      <scope>test</scope>
    </dependency>
    <!--  cxf  -->
    <dependency>
      <groupId>org.apache.cxf</groupId>
      <artifactId>cxf-rt-frontend-jaxws</artifactId>
      <version>${cxf-version}</version>
    </dependency>
    <!--  regular http transport  -->
    <dependency>
      <groupId>org.apache.cxf</groupId>
      <artifactId>cxf-rt-transports-http</artifactId>
      <version>${cxf-version}</version>
    </dependency>
    <!--  logging  -->
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.15</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.7.2</version>
    </dependency>
    <!--  cxf web container for unit testing  -->
    <dependency>
      <groupId>org.apache.cxf</groupId>
      <artifactId>cxf-rt-transports-http-jetty</artifactId>
      <version>${cxf-version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-test</artifactId>
      <version>${camel-version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-codegen-plugin</artifactId>
        <executions>
          <execution>
            <id>generate-sources</id>
            <phase>generate-sources</phase>
            <configuration>
              <sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
              <wsdlOptions>
                <wsdlOption>
                  <wsdl>
       ${basedir}/src/main/resources/etc/report_incident.wsdl
      </wsdl>
                </wsdlOption>
              </wsdlOptions>
            </configuration>
            <goals>
              <goal>wsdl2java</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>jetty-maven-plugin</artifactId>
        <configuration>
          <connectors>
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
              <port>9080</port>
              <maxIdleTime>60000</maxIdleTime>
            </connector>
          </connectors>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
share|improve this question
Go to http://search.maven.org and see if you can find the artifacts you have specified as dependencies. For example there is no 3.0.7 version for spring-web, should be 3.0.7.RELEASE. I'm not aware of your project, if there would be any conflicts, but I would also update the versions to latest. spring-web already has a 3.2.0.RELEASE out. – Mirko Adari Jan 23 at 16:28
Why do you not indent :( In any case, your dependencies are incorrect. – Dave Newton Jan 23 at 16:30
Sorry I had opened it up in notepad++ and for some reason it moved everything to the left. – Loeras Jan 23 at 16:33
I think the issue had something to do with my local repository, it could not seem to place the files in there, so I changed it in the settings.xml of maven to a different directory and now it builds just fine. Thank you for your help I did go an update my dependencies as well to newer versions. – Loeras Jan 23 at 16:54

closed as too localized by casperOne Jan 23 at 17:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.