https://github.com/slothsoft/framework-challenger
A framework for creating code challenges more easily.
https://github.com/slothsoft/framework-challenger
java maven-archetype
Last synced: 8 months ago
JSON representation
A framework for creating code challenges more easily.
- Host: GitHub
- URL: https://github.com/slothsoft/framework-challenger
- Owner: slothsoft
- License: mit
- Created: 2017-12-14T20:30:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T20:55:00.000Z (over 7 years ago)
- Last Synced: 2025-10-20T15:53:45.277Z (8 months ago)
- Topics: java, maven-archetype
- Language: Java
- Homepage: http://slothsoft.de/
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Challenger Framework
[](https://travis-ci.org/slothsoft/framework-challenger) [](https://search.maven.org/search?q=g:%22de.slothsoft.challenger%22%20AND%20a:%22core%22)
- **Author:** [Stef Schulz](mailto:s.schulz@slothsoft.de)
- **Repository:**
- **Open Issues:**
- **Wiki:** none
Sometimes I like to create a little programming challenge. Some of these share code, even though not really, so it only seemed right to have a Maven archetype for these things.
## Getting Started
### Prerequisites
You need at least **Java 8** or above to run the code.
### Using the Framework
The core library is in Maven Central, so you can easily add it like this:
```xml
de.slothsoft.challenger
core
1.0.0
```
To generate a new project from a Maven archetype, use this line:
```
mvn archetype:generate -DarchetypeGroupId=de.slothsoft.challenger -DarchetypeArtifactId=mapbased-archetype -DarchetypeVersion=1.0.0
```
## Versions
| Version | Changes |
| ------------- | ------------- |
| [1.0.0](https://github.com/slothsoft/framework-challenger/milestone/1?closed=1) | first release|
## Features
- **core** - basic functionality for finding contributions dynamically
- **mapbased-archetype** - Maven archetype for map based challenges like the [tribes challenge](https://github.com/slothsoft/challenge-tribes)
### Map Based Archetype
The resulting project looks something like that:

It might be ugly, but you can do fun stuff with it:
- [tribes challenge](https://github.com/slothsoft/challenge-tribes)
## License
This project is licensed under the MIT License - see the [MIT license](https://opensource.org/licenses/MIT) for details.