Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dávid Csákvári committed Sep 29, 2021
1 parent cfa8dbe commit 6d45d1a
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion docs/manual_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ import hu.advancedweb.scott.instrumentation.ScottClassFileTransformer
buildscript {
dependencies {
classpath "hu.advancedweb:scott:4.0.0"
classpath "hu.advancedweb:scott:4.0.1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>hu.advancedweb</groupId>
<artifactId>scott-parent</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<packaging>pom</packaging>

<name>Scott Test Reporter - POM</name>
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ or modify your existing tests to make it work.
Add [hu.advanceweb.scott-gradle-plugin](https://plugins.gradle.org/plugin/hu.advancedweb.scott-gradle-plugin) to your [build.gradle](https://github.com/dodie/scott/blob/master/scott-examples/junit4/build.gradle):
```groovy
plugins {
id "hu.advanceweb.scott-gradle-plugin" version "4.0.0"
id "hu.advanceweb.scott-gradle-plugin" version "4.0.1"
}
```

Expand All @@ -57,7 +57,7 @@ Add the following to your [pom.xml](https://github.com/dodie/scott/blob/master/s
<plugin>
<groupId>hu.advancedweb</groupId>
<artifactId>scott-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<executions>
<execution>
<goals>
Expand All @@ -73,7 +73,7 @@ Add the following to your [pom.xml](https://github.com/dodie/scott/blob/master/s
<dependency>
<groupId>hu.advancedweb</groupId>
<artifactId>scott</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions scott-examples/cucumber-io-cucumber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<plugin>
<groupId>hu.advancedweb</groupId>
<artifactId>scott-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>hu.advancedweb</groupId>
<artifactId>scott</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion scott-examples/junit4/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id "hu.advancedweb.scott-gradle-plugin" version "4.0.0"
id "hu.advancedweb.scott-gradle-plugin" version "4.0.1"
}

group 'hu.advancedweb'
Expand Down
4 changes: 2 additions & 2 deletions scott-examples/junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<plugin>
<groupId>hu.advancedweb</groupId>
<artifactId>scott-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -44,7 +44,7 @@
<dependency>
<groupId>hu.advancedweb</groupId>
<artifactId>scott</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion scott-examples/junit5/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id "hu.advancedweb.scott-gradle-plugin" version "4.0.0"
id "hu.advancedweb.scott-gradle-plugin" version "4.0.1"
}

group 'hu.advancedweb'
Expand Down
4 changes: 2 additions & 2 deletions scott-examples/junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<plugin>
<groupId>hu.advancedweb</groupId>
<artifactId>scott-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>hu.advancedweb</groupId>
<artifactId>scott</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion scott-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'hu.advanceweb'
version '4.0.0'
version '4.0.1'

sourceCompatibility = 1.8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class ScottPlugin implements Plugin<Project> {

public static final String DEFAULT_SCOTT_VERSION = "4.0.0";
public static final String DEFAULT_SCOTT_VERSION = "4.0.1";
public static final String AGENT_CONFIGURATION_NAME = "scottAgent";
public static final String PLUGIN_EXTENSION_NAME = "scott";

Expand Down
2 changes: 1 addition & 1 deletion scott-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>hu.advancedweb</groupId>
<artifactId>scott-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<url>https://github.com/dodie/scott</url>
<packaging>maven-plugin</packaging>

Expand Down
2 changes: 1 addition & 1 deletion scott-tests/configuration-based-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>hu.advancedweb</groupId>
<artifactId>configuration-based-tests</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion scott-tests/configuration-example-classes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>hu.advancedweb</groupId>
<artifactId>configuration-example-classes</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion scott-tests/junit4-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>hu.advancedweb</groupId>
<artifactId>junit4-tests</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion scott-tests/junit5-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>hu.advancedweb</groupId>
<artifactId>junit5-tests</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion scott-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>hu.advancedweb</groupId>
<artifactId>scott-tests</artifactId>
<packaging>pom</packaging>
<version>4.0.0</version>
<version>4.0.1</version>

<name>Scott Test Reporter - Tests</name>

Expand Down
2 changes: 1 addition & 1 deletion scott/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>hu.advancedweb</groupId>
<artifactId>scott</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<url>https://github.com/dodie/scott</url>

<properties>
Expand Down

0 comments on commit 6d45d1a

Please sign in to comment.