Skip to content

Commit

Permalink
bump default versions
Browse files Browse the repository at this point in the history
  • Loading branch information
baev committed Jul 30, 2024
1 parent 38bb72b commit 1d805a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ Groovy DSL:

```groovy
allure {
value = "2.8.0"
value = "2.30.0"
}
```

Kotlin DSL:

```kotlin
allure {
value.set("2.8.0")
value.set("2.30.0")
}
```

Expand Down Expand Up @@ -100,12 +100,12 @@ The sample uses Kotlin DSL. In Groovy DSL you could use `allureJavaVersion = "2.

```kotlin
allure {
version.set("2.19.0")
version.set("2.30.0")
adapter {
// Configure version for io.qameta.allure:allure-* adapters
// It defaults to allure.version
allureJavaVersion.set("2.19.0")
aspectjVersion.set("1.9.5")
allureJavaVersion.set("2.28.0")
aspectjVersion.set("1.9.22.1")

// Customize environment variables for launching Allure
environment.put("JAVA_HOME", "/path/to/java_home")
Expand Down Expand Up @@ -342,7 +342,7 @@ If you have a customized version, you could configure it as follows:
```kotlin
allure {
// This configures the common Allure version, so it is used for commandline as well
version.set("2.8.0")
version.set("2.30.0")

commandline {
// The following patterns are supported: `[group]`, `[module]`, `[version]`, `[extension]`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ open class AllureAdapterExtension @Inject constructor(
* `allure-java` version (adapters for test engines)
*/
val allureJavaVersion: Property<String> =
objects.property<String>().convention(project.the<AllureExtension>().version)
val aspectjVersion: Property<String> = objects.property<String>().convention("1.9.9.1")
objects.property<String>().convention("2.28.0")
val aspectjVersion: Property<String> = objects.property<String>().convention("1.9.22.1")


/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ abstract class AllureExtension(
/**
* `allure-commandline` version
*/
val version: Property<String> = objects.property<String>().convention("2.19.0")
val version: Property<String> = objects.property<String>().convention("2.30.0")

/**
* Default environment variables for launching `allure-commandline`.
Expand Down

0 comments on commit 1d805a9

Please sign in to comment.