Skip to content

Commit 28d298c

Browse files
authored
[MGPG-111] Fix dependencies (#81)
Changes: * add missing maven artifact and settings * add resolver impl to test scope * comment on plexus-cipher and sec-dispatcher
1 parent 75d8ed5 commit 28d298c

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

pgp-keys-map.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.junit.jupiter:junit-jupiter-api = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
2626
org.junit.jupiter:junit-jupiter-params = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
2727
org.junit.platform:junit-platform-commons = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
2828
org.opentest4j:opentest4j = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
29-
org.apache.maven.resolver = 0x522CA055B326A636D833EF6A0551FD3684FCBBB7
29+
org.apache.maven.resolver = 0x29BEA2A645F2D6CED7FB12E02B172E3E156466E8
3030
org.apache.maven.shared:maven-invoker = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
3131
org.codehaus.plexus:plexus-cipher = 0x6A814B1F869C2BBEAB7CB7271A2A1C94BDE89688
3232
org.codehaus.plexus:plexus-classworlds = 0xB91AB7D2121DC6B0A61AA182D7742D58455ECC7C

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ under the License.
8787
<version>${mavenVersion}</version>
8888
<scope>provided</scope>
8989
</dependency>
90+
<dependency>
91+
<groupId>org.apache.maven</groupId>
92+
<artifactId>maven-artifact</artifactId>
93+
<version>${mavenVersion}</version>
94+
<scope>provided</scope>
95+
</dependency>
9096
<dependency>
9197
<groupId>org.apache.maven</groupId>
9298
<artifactId>maven-core</artifactId>
@@ -105,6 +111,12 @@ under the License.
105111
<version>${mavenVersion}</version>
106112
<scope>provided</scope>
107113
</dependency>
114+
<dependency>
115+
<groupId>org.apache.maven</groupId>
116+
<artifactId>maven-settings</artifactId>
117+
<version>${mavenVersion}</version>
118+
<scope>provided</scope>
119+
</dependency>
108120
<dependency>
109121
<groupId>org.apache.maven.resolver</groupId>
110122
<artifactId>maven-resolver-api</artifactId>
@@ -137,6 +149,7 @@ under the License.
137149
<version>2.9.0</version>
138150
<type>pom</type>
139151
</dependency>
152+
<!-- These two below must go in pair -->
140153
<dependency>
141154
<groupId>org.codehaus.plexus</groupId>
142155
<artifactId>plexus-sec-dispatcher</artifactId>
@@ -182,6 +195,12 @@ under the License.
182195
<version>2.15.1</version>
183196
<scope>test</scope>
184197
</dependency>
198+
<dependency>
199+
<groupId>org.apache.maven.resolver</groupId>
200+
<artifactId>maven-resolver-impl</artifactId>
201+
<version>${resolverVersion}</version>
202+
<scope>test</scope>
203+
</dependency>
185204
</dependencies>
186205

187206
<build>

0 commit comments

Comments
 (0)