Skip to content

Commit

Permalink
Clean OpenML providers dependencies (#31)
Browse files Browse the repository at this point in the history
* PULSEDEV-27486: Clean OpenML providers dependencies

* PULSEDEV-27486: Bump openml-api version
  • Loading branch information
MiguelSCruz authored and Miguel Cruz committed May 31, 2019
1 parent d2ce3dc commit 3844a4d
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 35 deletions.
10 changes: 10 additions & 0 deletions openml-generic-python/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
10 changes: 10 additions & 0 deletions openml-python-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,15 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
10 changes: 10 additions & 0 deletions openml-scikit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@
<artifactId>openml-python-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
36 changes: 1 addition & 35 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<assertj.version>3.7.0</assertj.version>
<jackson.version>2.6.7</jackson.version>
<jackson-databind.version>2.6.7</jackson-databind.version>
<openml-api.version>0.3.0</openml-api.version>
<openml-api.version>0.4.2</openml-api.version>
<jep.version>3.7.0</jep.version>
</properties>

Expand Down Expand Up @@ -177,40 +177,6 @@
</dependencies>
</dependencyManagement>

<dependencies>
<!--Guava-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!--Logging-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>

<!--Testing-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit 3844a4d

Please sign in to comment.