Skip to content

Commit 24e879b

Browse files
MiguelSCruzMiguel Cruz
authored andcommitted
Clean OpenML providers dependencies (#31)
* PULSEDEV-27486: Clean OpenML providers dependencies * PULSEDEV-27486: Bump openml-api version
1 parent 125b0d8 commit 24e879b

File tree

4 files changed

+31
-35
lines changed

4 files changed

+31
-35
lines changed

openml-generic-python/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@
7171
<scope>test</scope>
7272
<type>test-jar</type>
7373
</dependency>
74+
<dependency>
75+
<groupId>junit</groupId>
76+
<artifactId>junit</artifactId>
77+
<scope>test</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.assertj</groupId>
81+
<artifactId>assertj-core</artifactId>
82+
<scope>test</scope>
83+
</dependency>
7484
</dependencies>
7585

7686
<build>

openml-python-common/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,15 @@
5353
<scope>test</scope>
5454
<type>test-jar</type>
5555
</dependency>
56+
<dependency>
57+
<groupId>junit</groupId>
58+
<artifactId>junit</artifactId>
59+
<scope>test</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.assertj</groupId>
63+
<artifactId>assertj-core</artifactId>
64+
<scope>test</scope>
65+
</dependency>
5666
</dependencies>
5767
</project>

openml-scikit/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,16 @@
7979
<artifactId>openml-python-common</artifactId>
8080
<version>${project.version}</version>
8181
</dependency>
82+
<dependency>
83+
<groupId>junit</groupId>
84+
<artifactId>junit</artifactId>
85+
<scope>test</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.assertj</groupId>
89+
<artifactId>assertj-core</artifactId>
90+
<scope>test</scope>
91+
</dependency>
8292
</dependencies>
8393

8494
<build>

pom.xml

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<assertj.version>3.7.0</assertj.version>
8080
<jackson.version>2.6.7</jackson.version>
8181
<jackson-databind.version>2.6.7</jackson-databind.version>
82-
<openml-api.version>1.0.1</openml-api.version>
82+
<openml-api.version>1.0.2</openml-api.version>
8383
<jep.version>3.7.0</jep.version>
8484
</properties>
8585

@@ -177,40 +177,6 @@
177177
</dependencies>
178178
</dependencyManagement>
179179

180-
<dependencies>
181-
<!--Guava-->
182-
<dependency>
183-
<groupId>com.google.guava</groupId>
184-
<artifactId>guava</artifactId>
185-
</dependency>
186-
187-
<!--Logging-->
188-
<dependency>
189-
<groupId>org.slf4j</groupId>
190-
<artifactId>slf4j-api</artifactId>
191-
</dependency>
192-
<dependency>
193-
<groupId>ch.qos.logback</groupId>
194-
<artifactId>logback-core</artifactId>
195-
</dependency>
196-
<dependency>
197-
<groupId>ch.qos.logback</groupId>
198-
<artifactId>logback-classic</artifactId>
199-
</dependency>
200-
201-
<!--Testing-->
202-
<dependency>
203-
<groupId>junit</groupId>
204-
<artifactId>junit</artifactId>
205-
<scope>test</scope>
206-
</dependency>
207-
<dependency>
208-
<groupId>org.assertj</groupId>
209-
<artifactId>assertj-core</artifactId>
210-
<scope>test</scope>
211-
</dependency>
212-
</dependencies>
213-
214180
<build>
215181
<pluginManagement>
216182
<plugins>

0 commit comments

Comments
 (0)