Skip to content

Commit 59b3d7e

Browse files
authored
Cleanup, add missing dependencies, redirect test output (#75)
1 parent 4db8c1b commit 59b3d7e

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

pom.xml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ under the License.
7979
<mavenFilteringVersion>4.0.0-SNAPSHOT</mavenFilteringVersion>
8080
<mavenPluginPluginVersion>4.0.0-SNAPSHOT</mavenPluginPluginVersion>
8181
<mavenPluginTestingVersion>4.0.0-alpha-3-SNAPSHOT</mavenPluginTestingVersion>
82-
<sisuVersion>0.9.0.M2</sisuVersion>
8382
<plexusBuildApiVersion>0.0.7</plexusBuildApiVersion>
83+
<sisuVersion>0.9.0.M2</sisuVersion>
84+
<slf4jVersion>2.0.13</slf4jVersion>
8485
<version.maven-invoker-plugin>3.7.0</version.maven-invoker-plugin>
8586
<version.maven-plugin-tools>${mavenPluginPluginVersion}</version.maven-plugin-tools>
8687

@@ -122,6 +123,18 @@ under the License.
122123
<version>${mavenVersion}</version>
123124
<scope>provided</scope>
124125
</dependency>
126+
<dependency>
127+
<groupId>org.apache.maven</groupId>
128+
<artifactId>maven-api-settings</artifactId>
129+
<version>${mavenVersion}</version>
130+
<scope>provided</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>org.apache.maven</groupId>
134+
<artifactId>maven-api-xml</artifactId>
135+
<version>${mavenVersion}</version>
136+
<scope>provided</scope>
137+
</dependency>
125138
<dependency>
126139
<groupId>org.apache.maven.shared</groupId>
127140
<artifactId>maven-filtering</artifactId>
@@ -173,6 +186,12 @@ under the License.
173186
<artifactId>plexus-utils</artifactId>
174187
<scope>test</scope>
175188
</dependency>
189+
<dependency>
190+
<groupId>org.slf4j</groupId>
191+
<artifactId>slf4j-simple</artifactId>
192+
<version>${slf4jVersion}</version>
193+
<scope>test</scope>
194+
</dependency>
176195
</dependencies>
177196

178197
<build>
@@ -207,10 +226,18 @@ under the License.
207226
<groupId>org.apache.maven.plugins</groupId>
208227
<artifactId>maven-plugin-plugin</artifactId>
209228
<version>${mavenPluginPluginVersion}</version>
229+
<configuration>
230+
<links>
231+
<link>https://maven.apache.org/shared/maven-filtering/apidocs/</link>
232+
</links>
233+
</configuration>
210234
</plugin>
211235
<plugin>
212236
<groupId>org.apache.maven.plugins</groupId>
213237
<artifactId>maven-surefire-plugin</artifactId>
238+
<configuration>
239+
<redirectTestOutputToFile>true</redirectTestOutputToFile>
240+
</configuration>
214241
</plugin>
215242
</plugins>
216243
</build>

0 commit comments

Comments
 (0)