Results 1 to 2 of 2

Thread: NullPointerException starting roo 1.0.2 via command line

  1. #1
    Join Date
    Jul 2007
    Posts
    25

    Default NullPointerException starting roo 1.0.2 via command line

    I have an existing roo project that is now causing issue when I start via command line.

    Code:
    NullPointerException at org.springframework.roo.project.Dependency.<init>(Dependency.java:117)
    roo version 1.0.2
    jdk 1.6_21
    mvn 2.2.1

    any ideas please?

  2. #2
    Join Date
    Jul 2007
    Posts
    25

    Default solved

    I had a dependency that was excluding spring

    <dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-core</artifactId>
    <version>${camel-version}</version>
    <exclusions>
    <exclusion>
    <artifactId>org.springframework</artifactId>
    </exclusion>
    </exclusions>
    </dependency>

    DOH!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •