Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
8 changes: 4 additions & 4 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Releasing

osx:
```bash
grep -rl 'sion>2.0.0</ver' ./ | xargs sed -i '' 's|sion>2.0.0</ver|sion>2.0.1</ver|g'
grep -rl 'sion>2.0.1</ver' ./ | xargs sed -i '' 's|sion>2.0.1</ver|sion>2.0.2</ver|g'
```
linux:
```bash
grep -rl 'sion>2.0.0</ver' ./ | xargs sed -i 's|sion>2.0.0</ver|sion>2.0.1</ver|g'
grep -rl 'sion>2.0.1</ver' ./ | xargs sed -i 's|sion>2.0.1</ver|sion>2.0.2</ver|g'
```
Last you should update those rows above.

Expand All @@ -60,8 +60,8 @@ mvn site:site
* Commit to git

```bash
git commit -am "version 2.0.0"
git tag -a 2.0.0 -m "version 2.0.0"
git commit -am "version 2.0.1"
git tag -a 2.0.1 -m "version 2.0.1"
git push
git push --tags
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Add the plugin to your build:
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<executions>
<execution>
<goals>
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>2.0.1-SNAPSHOT</version>
<version>2.0.2-SNAPSHOT</version>
<name>Robot Framework Maven Plugin</name>
<description>
Maven plugin for the Robot Framework.
Expand Down Expand Up @@ -198,18 +198,18 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1-jre</version>
<version>30.1.1-jre</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.6.3</version>
<version>3.8.1</version>
</dependency>

<dependency>
<groupId>org.robotframework</groupId>
<artifactId>robotframework</artifactId>
<version>4.0.1</version>
<version>4.0.3</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -247,7 +247,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.7.7</version>
<version>3.11.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -279,21 +279,21 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>3.6.3</version>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.6.3</version>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.6.3</version>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

Expand All @@ -307,7 +307,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/site/apt/examples/javalibraries.apt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Using Java Libraries with the Robotframework Plugin
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<configuration>
<extraPathDirectories>
<extraPathDirectory>src/test/resources/python</extraPathDirectory>
Expand Down
4 changes: 2 additions & 2 deletions src/site/apt/index.apt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Robot Framework Maven Plugin
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -126,7 +126,7 @@ Robot Framework Maven Plugin
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<executions>
<execution>
<goals>
Expand Down
4 changes: 2 additions & 2 deletions src/site/apt/transitioning.apt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Trasitioning from old version of Robot Framework Maven Plugin
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</plugin>
+---

Expand All @@ -46,7 +46,7 @@ Trasitioning from old version of Robot Framework Maven Plugin
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<configuration>
<libdoc>
<libraryOrResourceFile>MyLib</libraryOrResourceFile>
Expand Down