Author: oheger Date: Sat Jan 2 20:11:25 2010 New Revision: 895281 URL: http://svn.apache.org/viewvc?rev=895281&view=rev Log: [CONFIGURATION-402] Switched compile source and target to 1.4. Reordered some dependencies.
Modified: commons/proper/configuration/trunk/pom.xml Modified: commons/proper/configuration/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=895281&r1=895280&r2=895281&view=diff ============================================================================== --- commons/proper/configuration/trunk/pom.xml (original) +++ commons/proper/configuration/trunk/pom.xml Sat Jan 2 20:11:25 2010 @@ -200,7 +200,6 @@ </contributor> </contributors> - <!-- Lang should depend on very little --> <dependencies> <dependency> <groupId>commons-collections</groupId> @@ -264,28 +263,6 @@ </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.5.6</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-ext</artifactId> - <version>1.5.6</version> - <scope>test</scope> - </dependency> - - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <version>1.5.6</version> - <scope>test</scope> - </dependency> - - <dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.3</version> @@ -303,29 +280,6 @@ </dependency> <dependency> - <groupId>xerces</groupId> - <artifactId>xercesImpl</artifactId> - <version>2.3.0</version> - <!-- this is test instead of provided, since you can really provide whatever implementation you want --> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>2.7.0</version> - <!-- this is test instead of provided, since you can really provide whatever implementation you want --> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>xml-apis</groupId> - <artifactId>xml-apis</artifactId> - <version>1.0.b2</version> - <scope>provided</scope> - </dependency> - - <dependency> <groupId>xml-resolver</groupId> <artifactId>xml-resolver</artifactId> <version>1.2</version> @@ -346,6 +300,20 @@ <optional>true</optional> </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + <version>2.3.0</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>1.0.b2</version> + <scope>provided</scope> + </dependency> + <!-- Needed for testing --> <dependency> @@ -393,6 +361,10 @@ <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> + <exclusion> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </exclusion> </exclusions> </dependency> @@ -423,6 +395,27 @@ <version>1.2.8</version> <optional>true</optional> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.5.6</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-ext</artifactId> + <version>1.5.6</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>1.5.6</version> + <scope>test</scope> + </dependency> </dependencies> <properties> @@ -431,6 +424,8 @@ <commons.binary.suffix></commons.binary.suffix> <commons.jira.id>CONFIGURATION</commons.jira.id> <commons.jira.pid>12310467</commons.jira.pid> + <maven.compile.source>1.4</maven.compile.source> + <maven.compile.target>1.4</maven.compile.target> </properties> <build>