Skip to content

Commit c4eef8c

Browse files
Enable representer and analyzer (#2658)
1 parent ce9685d commit c4eef8c

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,25 @@
55
[![Build](https://github.com/exercism/java/actions/workflows/build.yml/badge.svg)](https://github.com/exercism/java/actions/workflows/build.yml)
66
[![Test](https://github.com/exercism/java/actions/workflows/test.yml/badge.svg)](https://github.com/exercism/java/actions/workflows/test.yml)
77

8-
Source for Exercism Exercises in Java.
8+
This repository contains the source for the exercises of the Java track on Exercism.
9+
10+
## Java Track Tooling
11+
12+
Next to the exercises, the Java track also consists of the following tooling:
13+
14+
- [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.
15+
- [exercism/java-representer] - The Exercism [representer][docs-representers] for the Java track that creates normalized representations of submitted solutions.
16+
- [exercism/java-analyzer] - The Exercism [analyzer][docs-analyzers] for the Java track that automatically provides comments on submitted solutions.
917

1018
## Contributing Guide
1119

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

1422
For information on contributing to this track, refer to the [CONTRIBUTING.md](https://github.com/exercism/java/blob/main/CONTRIBUTING.md) file.
23+
24+
[docs-analyzers]: https://exercism.org/docs/building/tooling/analyzers
25+
[docs-representers]: https://exercism.org/docs/building/tooling/representers
26+
[docs-test-runners]: https://exercism.org/docs/building/tooling/test-runners
27+
[exercism/java-analyzer]: https://github.com/exercism/java-analyzer
28+
[exercism/java-representer]: https://github.com/exercism/java-representer
29+
[exercism/java-test-runner]: https://github.com/exercism/java-test-runner

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"status": {
66
"concept_exercises": true,
77
"test_runner": true,
8-
"representer": false,
9-
"analyzer": false
8+
"representer": true,
9+
"analyzer": true
1010
},
1111
"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\".",
1212
"version": 3,

0 commit comments

Comments
 (0)