Skip to content

Commit

Permalink
change logback (1.0.2), sfl4j (1.6.4) and junit (4.10) version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
tibagosi committed Aug 28, 2013
1 parent 2fc4caa commit c386c40
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 18 deletions.
16 changes: 5 additions & 11 deletions pom.xml
Expand Up @@ -9,12 +9,6 @@
<url>http://obda.inf.unibz.it/</url>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>

<modules>
Expand Down Expand Up @@ -103,7 +97,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -119,17 +113,17 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.11</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.20</version>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>0.9.20</version>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>xsdlib</groupId>
Expand Down Expand Up @@ -189,7 +183,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.5.11</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Expand Down
5 changes: 5 additions & 0 deletions quest-owlapi3/pom.xml
Expand Up @@ -15,6 +15,11 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions quest-rdb2rdf-compliance/pom.xml
Expand Up @@ -19,6 +19,11 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>inf.unibz.it.obda</groupId>
<artifactId>obdalib-core</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions quest-sesame/pom.xml
Expand Up @@ -19,6 +19,11 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>obdalib-core</artifactId>
<groupId>inf.unibz.it.obda</groupId>
Expand Down
Expand Up @@ -29,8 +29,6 @@
import java.net.URI;
import java.sql.Connection;

import junit.framework.TestCase;

import org.semanticweb.owlapi.apibinding.OWLManager;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyManager;
Expand Down
Expand Up @@ -144,11 +144,11 @@ public void runR2RML() throws Exception {
pref.setCurrentValueOf(QuestPreferences.REWRITE, "true");
pref.setCurrentValueOf(QuestPreferences.REFORMULATION_TECHNIQUE, QuestConstants.TW);
//set jdbc params in config
pref.setCurrentValueOf(QuestPreferences.DBNAME, "bookExample");
pref.setCurrentValueOf(QuestPreferences.JDBC_URL, "jdbc:postgresql://10.7.20.39/books");
pref.setCurrentValueOf(QuestPreferences.DBUSER, "postgres");
pref.setCurrentValueOf(QuestPreferences.DBPASSWORD, "postgres");
pref.setCurrentValueOf(QuestPreferences.JDBC_DRIVER, "org.postgresql.Driver");
pref.setCurrentValueOf(QuestPreferences.DBNAME, "books");
pref.setCurrentValueOf(QuestPreferences.JDBC_URL, "jdbc:mysql://10.7.20.39/books?sessionVariables=sql_mode='ANSI'");
pref.setCurrentValueOf(QuestPreferences.DBUSER, "fish");
pref.setCurrentValueOf(QuestPreferences.DBPASSWORD, "fish");
pref.setCurrentValueOf(QuestPreferences.JDBC_DRIVER, "com.mysql.jdbc.Driver");

Repository repo = new SesameVirtualRepo("virtualExample2", owlontology, myGraph, pref);

Expand Down

0 comments on commit c386c40

Please sign in to comment.