docs: document usage of maven

pull/8/head
Dominique Merle 3 years ago
parent f15e9dd3de
commit 0b66dda605

1
.gitignore vendored

@ -4,5 +4,6 @@
/.gradle
/build
/target
*.class

@ -49,6 +49,7 @@ Got more than 2³² judges? Use a `Long[]` in a `ProposalTally`.
- [ ] Guess the amount of judges
- [ ] Release v0.2.0
- [ ] Publish on package repositories
- [ ] Gradle
- [ ] Maven
- [ ] … ? (please share your knowledge to help us!)
- [ ] Release v0.3.0
@ -65,7 +66,13 @@ Feel free to fork and request merges for your contributions and active readings
## Run the test-suite
`CTRL+F11` in Eclipse.
Install [maven](https://maven.apache.org), and run:
mvn test
> Maven is available as a debian package: `apt install maven`
You can also use a runner in Eclipse. (`CTRL+F11` to rerun)
## License

@ -17,7 +17,7 @@ repositories {
}
dependencies {
// Use the JUnit test framework with assertions and stuff
// Use the JUnit test framework with assertions and benchmarks
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.3'
testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.21'
@ -26,6 +26,5 @@ dependencies {
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
//implementation 'com.google.guava:guava:23.0'
}

Loading…
Cancel
Save