Skip to content

Commit

Permalink
Update parent (#91)
Browse files Browse the repository at this point in the history
Update parent, add badges
  • Loading branch information
cstamas committed Sep 10, 2024
1 parent 8efeb95 commit ce388e0
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: daily
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
4 changes: 4 additions & 0 deletions readme.md → README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Takari Maven Plugin Testing Framework

[![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)
[![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)
[![Reproducible Builds](https://img.shields.io/endpoint?url=https://github.com/raw/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)

Small, cohesive, one-stop library for developing unit and integration tests for
Maven plugins. Provides alternative to, and arguably supersedes,
maven-plugin-testing-harness and maven-verifier.
Expand Down
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>io.takari</groupId>
<artifactId>takari</artifactId>
<version>56</version>
<version>60</version>
</parent>

<groupId>io.takari.maven.plugins</groupId>
Expand Down Expand Up @@ -60,7 +60,12 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion takari-plugin-testing-its/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<artifactItem>
<groupId>org.apache.maven</groupId>
<artifactId>apache-maven</artifactId>
<version>3.9.8</version>
<version>3.9.9</version>
<classifier>bin</classifier>
<type>tar.gz</type>
</artifactItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static List<Object[]> versions() {
List<Object[]> parameters = new ArrayList<>();
parameters.add(new Object[] {"3.6.3"});
parameters.add(new Object[] {"3.8.8"});
parameters.add(new Object[] {"3.9.8"});
parameters.add(new Object[] {"3.9.9"});
return parameters;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@MavenInstallations({
"target/maven-installation/apache-maven-3.6.3",
"target/maven-installation/apache-maven-3.8.8",
"target/maven-installation/apache-maven-3.9.8"
"target/maven-installation/apache-maven-3.9.9"
})
public class JUnit5IntegrationTests {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void testUnitTestHarnessHonoursUserSettings(MavenRuntime maven, String version)
static final class MavenVersionsSource implements ArgumentsProvider {

private List<String> getMavenVersions() {
return Arrays.asList("3.6.3", "3.8.8", "3.9.8");
return Arrays.asList("3.6.3", "3.8.8", "3.9.9");
}

@Override
Expand Down
4 changes: 4 additions & 0 deletions takari-plugin-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down

0 comments on commit ce388e0

Please sign in to comment.