Skip to content

Commit d0a2fa6

Browse files
[MSHARED-1388] Bump org.apache.maven.shared:maven-shared-components from 41 to 42 (#73)
* Bump org.apache.maven.shared:maven-shared-components from 41 to 42 Bumps [org.apache.maven.shared:maven-shared-components](https://github.com/apache/maven-parent) from 41 to 42. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits) --- updated-dependencies: - dependency-name: org.apache.maven.shared:maven-shared-components dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Cleanups with new parent, fix tests --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slawomir Jaranowski <[email protected]>
1 parent 19886d8 commit d0a2fa6

File tree

4 files changed

+12
-53
lines changed

4 files changed

+12
-53
lines changed

pom.xml

+9-37
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven.shared</groupId>
2525
<artifactId>maven-shared-components</artifactId>
26-
<version>41</version>
26+
<version>42</version>
2727
<relativePath />
2828
</parent>
2929

@@ -68,18 +68,6 @@ under the License.
6868
<project.build.outputTimestamp>2022-04-05T18:45:23Z</project.build.outputTimestamp>
6969
</properties>
7070

71-
<dependencyManagement>
72-
<dependencies>
73-
<dependency>
74-
<groupId>org.junit</groupId>
75-
<artifactId>junit-bom</artifactId>
76-
<version>5.10.2</version>
77-
<type>pom</type>
78-
<scope>import</scope>
79-
</dependency>
80-
</dependencies>
81-
</dependencyManagement>
82-
8371
<dependencies>
8472
<dependency>
8573
<groupId>org.apache.maven.shared</groupId>
@@ -99,6 +87,13 @@ under the License.
9987
</dependencies>
10088

10189
<build>
90+
<testResources>
91+
<testResource>
92+
<filtering>true</filtering>
93+
<directory>${project.basedir}/src//test/resources</directory>
94+
</testResource>
95+
</testResources>
96+
10297
<plugins>
10398
<plugin>
10499
<groupId>org.apache.maven.plugins</groupId>
@@ -108,6 +103,7 @@ under the License.
108103
<systemPropertyVariables>
109104
<!-- required for maven-invoker to locate Maven installation -->
110105
<maven.home>${maven.home}</maven.home>
106+
<maven.repo.local>${settings.localRepository}</maven.repo.local>
111107
</systemPropertyVariables>
112108
<excludes>
113109
<exclude>test-build-should*/**</exclude>
@@ -120,28 +116,4 @@ under the License.
120116
</plugin>
121117
</plugins>
122118
</build>
123-
124-
<profiles>
125-
<profile>
126-
<id>maven-repo-local</id>
127-
<activation>
128-
<property>
129-
<name>maven.repo.local</name>
130-
</property>
131-
</activation>
132-
<build>
133-
<plugins>
134-
<plugin>
135-
<groupId>org.apache.maven.plugins</groupId>
136-
<artifactId>maven-surefire-plugin</artifactId>
137-
<configuration>
138-
<systemPropertyVariables combine.children="append">
139-
<maven.repo.local>${maven.repo.local}</maven.repo.local>
140-
</systemPropertyVariables>
141-
</configuration>
142-
</plugin>
143-
</plugins>
144-
</build>
145-
</profile>
146-
</profiles>
147119
</project>

src/test/java/org/apache/maven/shared/invoker/DefaultInvokerTest.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,8 @@ private File getBasedirForBuild() throws URISyntaxException {
242242

243243
private Properties getProperties() {
244244
Properties properties = new Properties();
245-
if (!System.getProperty("java.version").startsWith("1.")) {
246-
properties.put("maven.compiler.source", "1.7");
247-
properties.put("maven.compiler.target", "1.7");
248-
}
245+
properties.put("maven.compiler.source", "1.8");
246+
properties.put("maven.compiler.target", "1.8");
249247

250248
String httpProtocols = System.getProperty("https.protocols");
251249
if (httpProtocols != null) {

src/test/resources/test-build-should-timeout/pom.xml

-11
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,4 @@ under the License.
3131
<scope>test</scope>
3232
</dependency>
3333
</dependencies>
34-
<build>
35-
<pluginManagement>
36-
<plugins>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-surefire-plugin</artifactId>
40-
<version>2.22.2</version>
41-
</plugin>
42-
</plugins>
43-
</pluginManagement>
44-
</build>
4534
</project>

src/test/resources/test-space-properties/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ under the License.
2828
<plugin>
2929
<groupId>org.apache.maven.plugins</groupId>
3030
<artifactId>maven-antrun-plugin</artifactId>
31-
<version>3.0.0</version>
31+
<version>${version.maven-antrun-plugin}</version>
3232
<configuration>
3333
<target>
3434
<property name="prop0" value="${key}"/>

0 commit comments

Comments
 (0)