Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/src/docs/asciidoc/changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@

== Release 0.11.0

This version introduces a breaking change: the plugin now requires Gradle 8.3+ and Java 17 to run.
- This version introduces a breaking change: the plugin now requires Gradle 8.3+ and Java 17 to run
- Refactored JUnit support:
-- new implementation doesn't require list of classes for build-time initialization (starting from GraalVM for JDK 22)
-- added support for `@FieldSource` for `@ParameterizedTest` methods
-- added support for (registering for reflection) interfaces implemented by test classes
-- added support for `org.junit.rules.ExpectedException`
-- removed fallback mode that used classpath to generate test plan

=== Gradle plugin

Expand All @@ -12,6 +18,7 @@ This version introduces a breaking change: the plugin now requires Gradle 8.3+ a
=== Maven plugin

- Added support for running integration tests via maven-failsafe-plugin
- Provided scope dependencies are now included
- Add `runtimeArgs` support to `native-maven-plugin`

== Release 0.10.6
Expand Down
2 changes: 1 addition & 1 deletion docs/src/docs/asciidoc/maven-plugin.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ However, if you are using a version of Maven Surefire prior to 3.0 M4, you will
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.8.2</version>
<version>1.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
# Project versions
nativeBuildTools = "0.11.0-SNAPSHOT"
metadataRepository = "0.3.18"
metadataRepository = "0.3.22"

# External dependencies
spock = "2.1-groovy-3.0"
Expand Down
4 changes: 2 additions & 2 deletions samples/metadata-repo-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
<!-- tag::metadata-versioned[] -->
<metadataRepository>
<enabled>true</enabled>
<version>0.2.3</version>
<version>0.3.20</version>
</metadataRepository>
<!-- end::metadata-versioned[] -->
</configuration>
Expand Down Expand Up @@ -193,7 +193,7 @@
</executions>
<configuration>
<metadataRepository>
<version>0.2.3</version>
<version>0.3.20</version>
</metadataRepository>
</configuration>
</plugin>
Expand Down
Loading