Skip to content

Commit

Permalink
JBEHAVE-1271 Upgrades build plugins. Updated release notes and README…
Browse files Browse the repository at this point in the history
….md.
  • Loading branch information
maurotalevi committed Mar 24, 2018
1 parent 2f0b701 commit d056094
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -30,7 +30,8 @@ JDK version required:

### Maven

[Maven](http://maven.apache.org) version required to build: 3.0 or above.
[Maven](http://maven.apache.org) version required to build: 3.5 or above
(while tested with 3.5.x it may also work with previous 3.x versions)

### Encoding

Expand Down
3 changes: 2 additions & 1 deletion distribution/src/site/content/release-notes.html
Expand Up @@ -7,7 +7,6 @@

<h1>JBehave Core - Version 4.2 (Mar xx, 2018)</h1>


<h2> Bug
</h2>
<ul>
Expand Down Expand Up @@ -45,6 +44,8 @@ <h2> Task
</li>
<li>[<a href='https://jbehave.atlassian.net/browse/JBEHAVE-1269'>JBEHAVE-1269</a>] - Provide example of using synonyms using custom keywords overriding default for a given locale
</li>
<li>[<a href='https://jbehave.atlassian.net/browse/JBEHAVE-1271'>JBEHAVE-1271</a>] - Upgrade build plugin versions
</li>
</ul>

<h2> Improvement
Expand Down
26 changes: 13 additions & 13 deletions pom.xml
Expand Up @@ -86,7 +86,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<version>3.7.0</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
Expand All @@ -95,12 +95,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4</version>
<version>1.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<version>2.21.0</version>
<configuration>
<junitArtifactName>junit:junit</junitArtifactName>
<includes>
Expand All @@ -120,17 +120,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.18.1</version>
<version>2.21.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.8</version>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -151,7 +151,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -165,15 +165,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<version>3.0.2</version>
<configuration>
<encoding>${resource.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
Expand All @@ -186,12 +186,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -201,12 +201,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<version>3.7</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
Expand Down

0 comments on commit d056094

Please sign in to comment.