The version resolve problems
Hello, > I get this error > > > [ERROR] BUILD ERROR > [INFO] > ------------------------------------------------------------------------ > [INFO] Failed to resolve artifact. > > Couldn't find a version in [1.6] to match range [1.7,) > commons-digester:commons-digester:jar:null > > > My pom.xml contains this dependancies > > > <dependencies> > <dependency> > <groupId>org.springframework</groupId> > <artifactId>spring-webmvc</artifactId> > <version>2.0.1</version> > </dependency> > <dependency> > <groupId>org.springframework</groupId> > <artifactId>spring-hibernate3</artifactId> > <version>2.0.1</version> > </dependency> > <dependency> > <groupId>org.springframework</groupId> > <artifactId>spring-aop</artifactId> > <version>2.0.1</version> > </dependency> > <dependency> > <groupId>org.acegisecurity</groupId> > <artifactId>acegi-security</artifactId> > <version>1.0.3</version> > </dependency> > <dependency> > <groupId>org.hibernate</groupId> > <artifactId>hibernate</artifactId> > <version>3.2.1.ga</version> > </dependency> > <dependency> > <groupId>jdom</groupId> > <artifactId>jdom</artifactId> > <version>1.0</version> > </dependency> > <dependency> > <groupId>org.apache.struts</groupId> > <artifactId>struts-tiles</artifactId> > <version>1.3.5</version> > </dependency> > <dependency> > <groupId>javax.servlet</groupId> > <artifactId>jstl</artifactId> > <version>1.1.2</version> > </dependency> > <dependency> > <groupId>taglibs</groupId> > <artifactId>standard</artifactId> > <version>1.1.2</version> > </dependency> > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>4.1</version> > <scope>test</scope> > </dependency> > <dependency> > <groupId>javax.servlet</groupId> > <artifactId>servlet-api</artifactId> > <version>2.4</version> > <scope>provided</scope> > </dependency> > <dependency> > <groupId>javax.servlet</groupId> > <artifactId>jsp-api</artifactId> > <version>2.0</version> > <scope>provided</scope> > </dependency> > <dependency> > <groupId>poi</groupId> > <artifactId>poi</artifactId> > <version>2.5.1</version> > </dependency> > <dependency> > <groupId>commons-lang</groupId> > <artifactId>commons-lang</artifactId> > <version>2.2</version> > </dependency> > <dependency> > <groupId>commons-collections</groupId> > <artifactId>commons-collections</artifactId> > <version>3.2</version> > </dependency> > > <dependency> > <groupId>commons-dbcp</groupId> > <artifactId>commons-dbcp</artifactId> > <version>1.2</version> > <exclusions> > <exclusion> > <groupId>xml-apis</groupId> > <artifactId>xml-apis</artifactId> > </exclusion> > <exclusion> > <groupId>xerces</groupId> > <artifactId>xerces</artifactId> > </exclusion> > </exclusions> > </dependency> > <dependency> > <groupId>tomcat</groupId> > <artifactId>jasper-runtime</artifactId> > <version>5.5.9</version> > <scope>provided</scope> > </dependency> > <dependency> > <groupId>jasperreports</groupId> > <artifactId>jasperreports</artifactId> > <version>1.2.8</version> > <exclusions> > <exclusion> > <groupId>xml-apis</groupId> > <artifactId>xml-apis</artifactId> > </exclusion> > </exclusions> > </dependency> > <dependency> > <groupId>org.apache.struts</groupId> > <artifactId>struts-el</artifactId> > <version>1.3.5</version> > </dependency> > <dependency> > <groupId>org.apache.struts</groupId> > <artifactId>struts-extras</artifactId> > <version>1.3.5</version> > </dependency> > <dependency> > <groupId>oro</groupId> > <artifactId>oro</artifactId> > <version>2.0.8</version> > </dependency> > <dependency> > <groupId>taglibs</groupId> > <artifactId>regexp</artifactId> > <version>1.0.1</version> > </dependency> > <dependency> > <groupId>taglibs</groupId> > <artifactId>string</artifactId> > <version>1.1.0</version> > </dependency> > <dependency> > <groupId>com.openpole</groupId> > <artifactId>op-fw15</artifactId> > <version>1.2.4</version> > </dependency> > <dependency> > <groupId>mysql</groupId> > <artifactId>mysql-connector-java</artifactId> > <version>3.1.12</version> > </dependency> > <dependency> > <groupId>velocity</groupId> > <artifactId>velocity</artifactId> > <version>1.4</version> > </dependency> > </dependencies> > > > > >
