I'm getting validation errors on my spring config file
The top of the config file looks like this:Code:cvc-complex-type.3.2.2: Attribute 'default-dependency-check' is not allowed to appear in element 'beans'. applicationContext.xml Batch-server/src/META-INF line 13 Spring Beans Problem cvc-complex-type.3.2.2: Attribute 'dependency-check' is not allowed to appear in element 'bean'. applicationContext.xml Batch-server/src/META-INF line 45 Spring Beans Problem cvc-complex-type.3.2.2: Attribute 'dependency-check' is not allowed to appear in element 'bean'. applicationContext.xml Batch-server/src/META-INF line 52 Spring Beans Problem cvc-complex-type.3.2.2: Attribute 'dependency-check' is not allowed to appear in element 'bean'. applicationContext.xml Batch-server/src/META-INF line 59 Spring Beans Problem
This is using Spring IDE 2.2.4.Code:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:lang="http://www.springframework.org/schema/lang" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd" default-dependency-check="objects">
I tried downloading the latest 2.2.6, but I'm getting these errors:
An error occurred while collecting items to be installed
No repository found containing: com.springsource.org.aspectj.runtime/osgi.bundle/1.6.3.RELEASE
No repository found containing: com.springsource.org.aspectj.weaver/osgi.bundle/1.6.3.RELEASE
No repository found containing: org.springframework.context.support/osgi.bundle/3.0.0.SNAPSHOT
No repository found containing: org.springframework.ide.eclipse/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.core/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.ui/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.ui.editor/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.ui.graph/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.ui.refactori ng/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.beans.ui.search/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.core/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.doc/osgi.bundle/2.2.5.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.feature/org.eclipse.update.feature/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.ide.eclipse.ui/osgi.bundle/2.2.6.200908051215-RELEASE
No repository found containing: org.springframework.jms/osgi.bundle/3.0.0.SNAPSHOT
No repository found containing: com.springsource.javax.xml.stream/osgi.bundle/1.0.1
No repository found containing: com.springsource.org.antlr/osgi.bundle/3.0.1
No repository found containing: org.springframework.osgi.core/osgi.bundle/2.0.0.M1
No repository found containing: org.springframework.osgi.io/osgi.bundle/2.0.0.M1


Reply With Quote
