Skip to content

Commit

Permalink
Enforce maven version to 3.1.0+ and add supplimentary information to …
Browse files Browse the repository at this point in the history
…CONTRIBUTING.md.
  • Loading branch information
itohro committed May 8, 2016
1 parent d85e8f2 commit fe885a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Contact us

Build
-----
The Eclipse Collections build requires below as dependencies.

- Java 1.8
- Maven 3.1.0+

The Eclipse Collections build performs code generation to create primitive collections. Run the full build once before opening your IDE.

Expand Down Expand Up @@ -63,7 +67,7 @@ Coding Style
Eclipse Collections follows a coding style that is similar to [Google's Style Guide for Java][style-guide], but with curly braces on their own lines. Many aspects of the style guide are enforced by CheckStyle, but not all, so please take care.

```bash
$ mvn clean install checkstyle:check findbugs:check -DskipTests=true
$ mvn clean install checkstyle:check findbugs:check --projects '!scala-unit-tests,!jmh-scala-tests,!jmh-tests' -DskipTests=true
```

Avoid changing whitespace on lines that are unrelated to your pull request. This helps preserve the accuracy of the git blame view, and makes code reviews easier.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@
<version>1.8.0</version>
</requireJavaVersion>
<requireMavenVersion>
<version>3.0.2</version>
<version>3.1.0</version>
</requireMavenVersion>
<requirePluginVersions>
<unCheckedPluginList>
Expand Down

0 comments on commit fe885a1

Please sign in to comment.