Skip to content

Commit 3a35de8

Browse files
docs
1 parent ccac62d commit 3a35de8

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: "Contributions"
3+
date: 2018-09-09T12:52:46+10:00
4+
draft: false
5+
tags: [documentation]
6+
weight: 103
7+
description: Contributions
8+
---
9+
# Contributions
10+
11+
Every contribution to make this project better is welcome: Thank you!
12+
13+
In order to make this a pleasant as possible for everybody involved, here are some tips:
14+
15+
* Respect the [Code of Conduct](#code-of-conduct)
16+
17+
* Before opening an Issue to report a bug, please try the latest development version. It can happen that the problem is already solved.
18+
19+
* Please use Markdown to format your comments properly. If you are not familiar with that: [Getting started with writing and formatting on GitHub](https://help.github.com/articles/getting-started-with-writing-and-formatting-on-github)
20+
21+
* For Pull Requests:
22+
* Here are some [general tips]( https://github.com/blog/1943-how-to-write-the-perfect-pull-request)
23+
24+
* Please be a as focused and clear as possible and don't mix concerns. This includes refactorings mixed with bug-fixes/features, see [Open Source Contribution Etiquette](http://tirania.org/blog/archive/2010/Dec-31.html)
25+
26+
* It would be good to add a automatic test. All tests are written in [Spock](http://spockframework.github.io/spock/docs/1.0/index.html).
27+
28+
## Build and test locally
29+
30+
Just clone the repo and type
31+
32+
{{< highlight sh "linenos=table" >}}
33+
34+
./gradlew build
35+
{{< / highlight >}}
36+
<br/>
37+
In `build/libs` you will find the jar file.
38+
39+
Running the tests:
40+
41+
{{< highlight sh "linenos=table" >}}
42+
43+
./gradlew test
44+
{{< / highlight >}}
45+
46+
Installing in the local Maven repository:
47+
48+
{{< highlight sh "linenos=table" >}}
49+
50+
./gradlew install
51+
{{< / highlight >}}

0 commit comments

Comments
 (0)