Skip to content

Commit 71d8139

Browse files
committed
TRR: Dependency remediation (WiP)
1 parent eb941e6 commit 71d8139

3 files changed

Lines changed: 69 additions & 0 deletions

File tree

example/apache-ignite/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,25 @@
100100
</exclusions>
101101
</dependency>
102102

103+
<dependency>
104+
<groupId>org.scalamock</groupId>
105+
<artifactId>scalamock_2.13</artifactId>
106+
<version>${scalamock.version}</version>
107+
<scope>test</scope>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>org.scala-lang</groupId>
111+
<artifactId>scala-library</artifactId>
112+
</exclusion>
113+
</exclusions>
114+
</dependency>
115+
116+
<dependency>
117+
<groupId>com.typesafe</groupId>
118+
<artifactId>config</artifactId>
119+
<version>${typesafe.conf.version}</version>
120+
</dependency>
121+
103122
<dependency>
104123
<groupId>io.opencensus</groupId>
105124
<artifactId>opencensus-api</artifactId>

example/rest-api/pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
<artifactId>vuu</artifactId>
1919
<version>0.9.76-SNAPSHOT</version>
2020
</dependency>
21+
22+
<dependency>
23+
<groupId>com.typesafe</groupId>
24+
<artifactId>config</artifactId>
25+
<version>${typesafe.conf.version}</version>
26+
</dependency>
27+
2128
<dependency>
2229
<groupId>com.softwaremill.sttp.client4</groupId>
2330
<artifactId>core_2.13</artifactId>
@@ -29,6 +36,37 @@
2936
</exclusion>
3037
</exclusions>
3138
</dependency>
39+
40+
<dependency>
41+
<groupId>org.scalatest</groupId>
42+
<artifactId>scalatest_2.13</artifactId>
43+
<version>${scalatest.version}</version>
44+
<scope>test</scope>
45+
<exclusions>
46+
<exclusion>
47+
<groupId>org.scala-lang</groupId>
48+
<artifactId>scala-library</artifactId>
49+
</exclusion>
50+
<exclusion>
51+
<groupId>org.scala-lang</groupId>
52+
<artifactId>scala-reflect</artifactId>
53+
</exclusion>
54+
</exclusions>
55+
</dependency>
56+
57+
<dependency>
58+
<groupId>org.scalamock</groupId>
59+
<artifactId>scalamock_2.13</artifactId>
60+
<version>${scalamock.version}</version>
61+
<scope>test</scope>
62+
<exclusions>
63+
<exclusion>
64+
<groupId>org.scala-lang</groupId>
65+
<artifactId>scala-library</artifactId>
66+
</exclusion>
67+
</exclusions>
68+
</dependency>
69+
3270
</dependencies>
3371

3472
<profiles>

plugin/ignite-plugin/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,18 @@
101101
</exclusions>
102102
</dependency>
103103

104+
<dependency>
105+
<groupId>org.scalamock</groupId>
106+
<artifactId>scalamock_2.13</artifactId>
107+
<version>${scalamock.version}</version>
108+
<scope>test</scope>
109+
<exclusions>
110+
<exclusion>
111+
<groupId>org.scala-lang</groupId>
112+
<artifactId>scala-library</artifactId>
113+
</exclusion>
114+
</exclusions>
115+
</dependency>
104116

105117
</dependencies>
106118

0 commit comments

Comments
 (0)