Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,25 @@
[![Build](https://github.com/exercism/java/actions/workflows/build.yml/badge.svg)](https://github.com/exercism/java/actions/workflows/build.yml)
[![Test](https://github.com/exercism/java/actions/workflows/test.yml/badge.svg)](https://github.com/exercism/java/actions/workflows/test.yml)

Source for Exercism Exercises in Java.
This repository contains the source for the exercises of the Java track on Exercism.

## Java Track Tooling

Next to the exercises, the Java track also consists of the following tooling:

- [exercism/java-test-runner] - The Exercism [test runner][docs-test-runners] for the Java track that automatically verifies if a submitted solution passes all of the exercise's tests.
- [exercism/java-representer] - The Exercism [representer][docs-representers] for the Java track that creates normalized representations of submitted solutions.
- [exercism/java-analyzer] - The Exercism [analyzer][docs-analyzers] for the Java track that automatically provides comments on submitted solutions.

## Contributing Guide

For general information about how to contribute to Exercism, please refer to the [Contributing Guide](https://exercism.org/contributing).

For information on contributing to this track, refer to the [CONTRIBUTING.md](https://github.com/exercism/java/blob/main/CONTRIBUTING.md) file.

[docs-analyzers]: https://exercism.org/docs/building/tooling/analyzers
[docs-representers]: https://exercism.org/docs/building/tooling/representers
[docs-test-runners]: https://exercism.org/docs/building/tooling/test-runners
[exercism/java-analyzer]: https://github.com/exercism/java-analyzer
[exercism/java-representer]: https://github.com/exercism/java-representer
[exercism/java-test-runner]: https://github.com/exercism/java-test-runner
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"status": {
"concept_exercises": true,
"test_runner": true,
"representer": false,
"analyzer": false
"representer": true,
"analyzer": true
},
"blurb": "Java is a very widely used Object Oriented programming language. It's safe, simple to use and portable so that you can \"write once, run anywhere\".",
"version": 3,
Expand Down