From 600dab1188e9409fbf83963af7b9c35b7330f809 Mon Sep 17 00:00:00 2001 From: Sander Ploegsma Date: Sat, 20 Jan 2024 21:47:32 +0100 Subject: [PATCH 1/2] Enable representer and analyzer --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 65714e34c..b1e2f0ac2 100644 --- a/config.json +++ b/config.json @@ -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, From c8e198ed8c82f13f624408519e53aab4ecb84242 Mon Sep 17 00:00:00 2001 From: Sander Ploegsma Date: Sat, 20 Jan 2024 21:55:54 +0100 Subject: [PATCH 2/2] Add links to tooling repos in README --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e562f9c18..91beb1085 100644 --- a/README.md +++ b/README.md @@ -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