Skip to content

Commit 080b8b2

Browse files
committed
fix: add missing dependency
1 parent c256846 commit 080b8b2

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

jsonschema2pojo-integration-tests/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@
110110
<groupId>org.apache.maven</groupId>
111111
<artifactId>maven-plugin-api</artifactId>
112112
</dependency>
113+
<dependency>
114+
<groupId>org.apache.maven</groupId>
115+
<artifactId>maven-project</artifactId>
116+
</dependency>
113117
<dependency>
114118
<groupId>com.github.stefanbirkner</groupId>
115119
<artifactId>system-rules</artifactId>
@@ -174,6 +178,18 @@
174178
<groupId>org.robolectric</groupId>
175179
<artifactId>robolectric</artifactId>
176180
</dependency>
181+
<dependency>
182+
<groupId>androidx.test</groupId>
183+
<artifactId>monitor</artifactId>
184+
<type>aar</type>
185+
<scope>test</scope>
186+
</dependency>
187+
<dependency>
188+
<groupId>androidx.tracing</groupId>
189+
<artifactId>tracing</artifactId>
190+
<type>aar</type>
191+
<scope>test</scope>
192+
</dependency>
177193
<dependency>
178194
<groupId>com.thoughtworks.qdox</groupId>
179195
<artifactId>qdox</artifactId>

pom.xml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<jackson2x.version>2.15.2</jackson2x.version>
5656
<jackson2x.databind.version>2.15.2</jackson2x.databind.version>
5757
<maven.plugin.plugin.version>3.8.1</maven.plugin.plugin.version>
58+
<maven-api.version>2.2.1</maven-api.version>
5859
</properties>
5960

6061
<reporting>
@@ -446,7 +447,7 @@
446447
<dependency>
447448
<groupId>org.apache.maven</groupId>
448449
<artifactId>maven-plugin-api</artifactId>
449-
<version>2.2.1</version>
450+
<version>${maven-api.version}</version>
450451
<scope>provided</scope>
451452
</dependency>
452453
<dependency>
@@ -458,7 +459,7 @@
458459
<dependency>
459460
<groupId>org.apache.maven</groupId>
460461
<artifactId>maven-project</artifactId>
461-
<version>2.2.1</version>
462+
<version>${maven-api.version}</version>
462463
<scope>provided</scope>
463464
</dependency>
464465
<dependency>
@@ -508,6 +509,26 @@
508509
<version>4.13</version>
509510
<scope>test</scope>
510511
</dependency>
512+
<dependency>
513+
<groupId>androidx.test</groupId>
514+
<artifactId>monitor</artifactId>
515+
<version>1.7.1</version>
516+
<type>aar</type>
517+
<scope>test</scope>
518+
<exclusions>
519+
<exclusion>
520+
<groupId>androidx.tracing</groupId>
521+
<artifactId>tracing</artifactId>
522+
</exclusion>
523+
</exclusions>
524+
</dependency>
525+
<dependency>
526+
<groupId>androidx.tracing</groupId>
527+
<artifactId>tracing</artifactId>
528+
<version>1.1.0</version>
529+
<type>aar</type>
530+
<scope>test</scope>
531+
</dependency>
511532
<dependency>
512533
<groupId>org.skyscreamer</groupId>
513534
<artifactId>jsonassert</artifactId>

0 commit comments

Comments
 (0)