Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • One quick solution is to change the OODT version in pom.xml into 0.3 and then compile. This will work perfectly compatible with OODT 0.7.  
    The following snippet is copied from the pom.xml of fileconcatenator-pge, the version before the change was "0.3 snapshot", change it to 0.3.

     

    Align
    alignleft

    <dependencies>

          <dependency>

              <groupId>org.apache.oodt</groupId>

              <artifactId>cas-pge</artifactId>

              <version>0.3</version>

              <scope>compile</scope>

          </dependency>

      </dependencies>

     

     

  • Another solution is to change the OODT version in pom.xml into 0.7 and follow the steps below:

...