Skip to content

Commit a4190d2

Browse files
Cleanups dependencies
follow advices from dependency:analyzer
1 parent b99f6be commit a4190d2

File tree

1 file changed

+34
-4
lines changed

1 file changed

+34
-4
lines changed

pom.xml

+34-4
Original file line numberDiff line numberDiff line change
@@ -88,18 +88,44 @@
8888
</properties>
8989

9090
<dependencies>
91+
<dependency>
92+
<groupId>org.apache.maven</groupId>
93+
<artifactId>maven-artifact</artifactId>
94+
<version>${mavenVersion}</version>
95+
<scope>provided</scope>
96+
</dependency>
9197
<dependency>
9298
<groupId>org.apache.maven</groupId>
9399
<artifactId>maven-core</artifactId>
94100
<version>${mavenVersion}</version>
95101
<scope>provided</scope>
96102
</dependency>
103+
<dependency>
104+
<groupId>org.apache.maven</groupId>
105+
<artifactId>maven-model</artifactId>
106+
<version>${mavenVersion}</version>
107+
<scope>provided</scope>
108+
</dependency>
97109
<dependency>
98110
<groupId>org.apache.maven</groupId>
99111
<artifactId>maven-plugin-api</artifactId>
100112
<version>${mavenVersion}</version>
101113
<scope>provided</scope>
102114
</dependency>
115+
<dependency>
116+
<groupId>org.apache.maven</groupId>
117+
<artifactId>maven-settings</artifactId>
118+
<version>${mavenVersion}</version>
119+
<scope>provided</scope>
120+
</dependency>
121+
<dependency>
122+
<groupId>org.apache.maven.resolver</groupId>
123+
<artifactId>maven-resolver-api</artifactId>
124+
<!-- the same version as in used Maven dependencies -->
125+
<version>1.4.1</version>
126+
<scope>provided</scope>
127+
</dependency>
128+
103129
<dependency>
104130
<groupId>org.apache.maven.plugin-tools</groupId>
105131
<artifactId>maven-plugin-annotations</artifactId>
@@ -109,28 +135,32 @@
109135
<groupId>org.codehaus.plexus</groupId>
110136
<artifactId>plexus-utils</artifactId>
111137
<version>4.0.1</version>
112-
<scope>compile</scope>
113138
</dependency>
114139
<dependency>
115140
<groupId>org.apache-extras.beanshell</groupId>
116141
<artifactId>bsh</artifactId>
117142
<version>2.0b6</version>
118-
<scope>compile</scope>
119143
</dependency>
120144
<dependency>
121145
<groupId>org.apache.maven.shared</groupId>
122146
<artifactId>file-management</artifactId>
123147
<version>3.1.0</version>
124-
<scope>compile</scope>
125148
</dependency>
126149
<dependency>
127150
<groupId>org.slf4j</groupId>
128151
<artifactId>slf4j-api</artifactId>
129152
<version>1.7.36</version>
130153
</dependency>
154+
155+
<!-- testing -->
156+
<dependency>
157+
<groupId>org.junit.jupiter</groupId>
158+
<artifactId>junit-jupiter-api</artifactId>
159+
<scope>test</scope>
160+
</dependency>
131161
<dependency>
132162
<groupId>org.junit.jupiter</groupId>
133-
<artifactId>junit-jupiter</artifactId>
163+
<artifactId>junit-jupiter-params</artifactId>
134164
<scope>test</scope>
135165
</dependency>
136166
<dependency>

0 commit comments

Comments
 (0)