Skip to content

Commit

Permalink
finos#1378 pom clean up to make java working
Browse files Browse the repository at this point in the history
  • Loading branch information
rumakt authored and naleeha committed Jul 4, 2024
1 parent 8569774 commit b958d1f
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 29 deletions.
2 changes: 0 additions & 2 deletions benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/apache-ignite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/basket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/editable/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
7 changes: 5 additions & 2 deletions example/main-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
<artifactId>vuu</artifactId>
<version>0.9.65-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.finos.vuu</groupId>
<artifactId>vuu-java</artifactId>
<version>0.9.65-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.finos.vuu</groupId>
Expand Down Expand Up @@ -71,8 +76,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/order/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/permission/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/price/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions example/virtualized-table/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
2 changes: 0 additions & 2 deletions plugin/ignite-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>


Expand Down
2 changes: 0 additions & 2 deletions plugin/virtualized-table-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>


Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
2 changes: 0 additions & 2 deletions toolbox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class ScalaCollectionConverter {

public static <K, V> scala.collection.immutable.Map<K, V> toScala(Map<K, V> m) {
return scala.collection.immutable.Map.from(scala.jdk.CollectionConverters.MapHasAsScala(m).asScala());
return scala.collection.immutable.Map.from(CollectionConverters.MapHasAsScala(m).asScala());
}

public static <T> scala.collection.Iterable<T> toScala(Iterable<T> l) {
Expand Down
2 changes: 0 additions & 2 deletions vuu-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down
4 changes: 4 additions & 0 deletions vuu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<version>${scala.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

<dependency>
<groupId>org.scalatest</groupId>
Expand Down

0 comments on commit b958d1f

Please sign in to comment.