Skip to content

Commit ce388e0

Browse files
authored
Update parent (#91)
Update parent, add badges
1 parent 8efeb95 commit ce388e0

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: "maven"
44
directory: "/"
55
schedule:
6-
interval: daily
6+
interval: "daily"
77
- package-ecosystem: "github-actions"
88
directory: "/"
99
schedule:

readme.md renamed to README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Takari Maven Plugin Testing Framework
22

3+
[![Maven Central](https://img.shields.io/maven-central/v/io.takari.maven.plugins/takari-plugin-testing-project.svg?label=Maven%20Central)](https://search.maven.org/artifact/io.takari.maven.plugins/takari-plugin-testing-project)
4+
[![Verify](https://github.com/takari/takari-plugin-testing-project/actions/workflows/ci.yml/badge.svg)](https://github.com/takari/takari-plugin-testing-project/actions/workflows/ci.yml)
5+
[![Reproducible Builds](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/io/takari/maven/plugins/takari-plugin-testing/badge.json)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/io/takari/maven/plugins/takari-plugin-testing/README.md)
6+
37
Small, cohesive, one-stop library for developing unit and integration tests for
48
Maven plugins. Provides alternative to, and arguably supersedes,
59
maven-plugin-testing-harness and maven-verifier.

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>io.takari</groupId>
1616
<artifactId>takari</artifactId>
17-
<version>56</version>
17+
<version>60</version>
1818
</parent>
1919

2020
<groupId>io.takari.maven.plugins</groupId>
@@ -60,7 +60,12 @@
6060
<dependency>
6161
<groupId>org.codehaus.plexus</groupId>
6262
<artifactId>plexus-utils</artifactId>
63-
<version>3.5.1</version>
63+
<version>4.0.1</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.codehaus.plexus</groupId>
67+
<artifactId>plexus-xml</artifactId>
68+
<version>3.0.1</version>
6469
</dependency>
6570
<dependency>
6671
<groupId>org.slf4j</groupId>

takari-plugin-testing-its/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<artifactItem>
138138
<groupId>org.apache.maven</groupId>
139139
<artifactId>apache-maven</artifactId>
140-
<version>3.9.8</version>
140+
<version>3.9.9</version>
141141
<classifier>bin</classifier>
142142
<type>tar.gz</type>
143143
</artifactItem>

takari-plugin-testing-its/src/test/java/io/takari/maven/testing/test/IntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static List<Object[]> versions() {
3333
List<Object[]> parameters = new ArrayList<>();
3434
parameters.add(new Object[] {"3.6.3"});
3535
parameters.add(new Object[] {"3.8.8"});
36-
parameters.add(new Object[] {"3.9.8"});
36+
parameters.add(new Object[] {"3.9.9"});
3737
return parameters;
3838
}
3939

takari-plugin-testing-its/src/test/java/io/takari/maven/testing/test/JUnit5IntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
@MavenInstallations({
1717
"target/maven-installation/apache-maven-3.6.3",
1818
"target/maven-installation/apache-maven-3.8.8",
19-
"target/maven-installation/apache-maven-3.9.8"
19+
"target/maven-installation/apache-maven-3.9.9"
2020
})
2121
public class JUnit5IntegrationTests {
2222

takari-plugin-testing-its/src/test/java/io/takari/maven/testing/test/JUnit5UnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void testUnitTestHarnessHonoursUserSettings(MavenRuntime maven, String version)
8686
static final class MavenVersionsSource implements ArgumentsProvider {
8787

8888
private List<String> getMavenVersions() {
89-
return Arrays.asList("3.6.3", "3.8.8", "3.9.8");
89+
return Arrays.asList("3.6.3", "3.8.8", "3.9.9");
9090
}
9191

9292
@Override

takari-plugin-testing/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
<groupId>org.codehaus.plexus</groupId>
3535
<artifactId>plexus-utils</artifactId>
3636
</dependency>
37+
<dependency>
38+
<groupId>org.codehaus.plexus</groupId>
39+
<artifactId>plexus-xml</artifactId>
40+
</dependency>
3741
<dependency>
3842
<groupId>org.slf4j</groupId>
3943
<artifactId>slf4j-api</artifactId>

0 commit comments

Comments
 (0)