From: <lor...@us...> - 2012-03-09 09:19:42
|
Revision: 3606 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3606&view=rev Author: lorenz_b Date: 2012-03-09 09:19:31 +0000 (Fri, 09 Mar 2012) Log Message: ----------- Updated JENA libs. Modified Paths: -------------- trunk/components-core/pom.xml trunk/pom.xml Modified: trunk/components-core/pom.xml =================================================================== --- trunk/components-core/pom.xml 2012-03-07 14:50:29 UTC (rev 3605) +++ trunk/components-core/pom.xml 2012-03-09 09:19:31 UTC (rev 3606) @@ -102,6 +102,10 @@ <artifactId>arq</artifactId> <groupId>com.hp.hpl.jena</groupId> </exclusion> + <exclusion> + <artifactId>xercesImpl</artifactId> + <groupId>xerces</groupId> + </exclusion> </exclusions> </dependency> @@ -131,6 +135,12 @@ <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-arq</artifactId> + <exclusions> + <exclusion> + <artifactId>xercesImpl</artifactId> + <groupId>xerces</groupId> + </exclusion> + </exclusions> </dependency> <!--JSON is in Central --> @@ -178,6 +188,12 @@ <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-core</artifactId> + <exclusions> + <exclusion> + <artifactId>xercesImpl</artifactId> + <groupId>xerces</groupId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -236,7 +252,6 @@ <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> - <version>3.5.0</version> </dependency> </dependencies> </project> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2012-03-07 14:50:29 UTC (rev 3605) +++ trunk/pom.xml 2012-03-09 09:19:31 UTC (rev 3606) @@ -164,7 +164,7 @@ <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-core</artifactId> - <version>2.7.0-incubating</version> + <version>2.7.1-incubating-SNAPSHOT</version> </dependency> <!--SwingX is in central --> <dependency> @@ -197,7 +197,7 @@ <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> - <version>2.9.3</version> + <version>3.5.0</version> </dependency> <dependency> @@ -224,7 +224,7 @@ <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-arq</artifactId> - <version>2.9.0-incubating</version> + <version>2.9.1-incubating-SNAPSHOT</version> </dependency> <!--Junits --> @@ -306,7 +306,7 @@ <dependency> <groupId>org.aksw.commons</groupId> <artifactId>model</artifactId> - <version>${aksw.version}</version> + <version>0.2-SNAPSHOT</version> </dependency> <dependency> <groupId>org.aksw.commons</groupId> @@ -317,7 +317,7 @@ <dependency> <groupId>org.aksw.commons</groupId> <artifactId>util</artifactId> - <version>${aksw.version}</version> + <version>0.2-SNAPSHOT</version> </dependency> @@ -421,7 +421,7 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> - <version>3.0.5.RELEASE</version> + <version>3.1.1.RELEASE</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> @@ -432,7 +432,7 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> - <version>3.0.5.RELEASE</version> + <version>3.1.1.RELEASE</version> </dependency> <!--BEGIN Logging Dependencies--> @@ -541,13 +541,24 @@ <name>Semanticscience projects</name> <url>http://s1.semanticscience.org:8080/nexus/content/groups/public/</url> </repository> + <repository> - <id>apache-repo-releases</id> - <url>https://repository.apache.org/content/repositories/releases/</url> - <releases> - <enabled>true</enabled> - </releases> + <id>apache-repo-releases</id> + <url>https://repository.apache.org/content/repositories/releases/</url> + <releases> + <enabled>true</enabled> + </releases> </repository> + <repository> + <id>apache-repo-snapshots</id> + <url>https://repository.apache.org/content/repositories/snapshots/</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> </repositories> <pluginRepositories> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |