From 75f0547ed1010a44bde05466ec9848fb7467b8e5 Mon Sep 17 00:00:00 2001 From: Jan Schatteman Date: Thu, 25 Jan 2024 22:28:19 +0100 Subject: [PATCH] Fix a few doc errors Signed-off-by: Jan Schatteman --- README.md | 4 ++-- docs/contribute/contribute.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 258ff01c2a..1779606f0c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The general idea is to keep your 'master' branch in-sync with the ## Building Hibernate Eclipse Tools To build _Hibernate Eclipse Tools_ requires specific versions of Java (1.6+) and -+Maven (3.1+). See this [link](https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/readme.md) for more information on how to setup, run and configure build. ++Maven (3.1+). Check [here](https://github.com/jbosstools/jbosstools-devdoc/blob/master/building) for more information on how to setup, run and configure build. This command will run the build: @@ -39,7 +39,7 @@ This command will run the build: If you just want to check if things compiles/builds you can run: - $ mvn clean verify -DskipTest=true + $ mvn clean verify -DskipTests But *do not* push changes without having the new and existing unit tests pass! diff --git a/docs/contribute/contribute.md b/docs/contribute/contribute.md index 8e5f602403..bde285c2a0 100644 --- a/docs/contribute/contribute.md +++ b/docs/contribute/contribute.md @@ -101,7 +101,7 @@ We are using [Tycho](https://projects.eclipse.org/projects/technology) and [Mave -Building the project is as simple as issuing `mvn clean install` or `mvn clean verify`. This will include running all the tests of the project. Because this takes a while, you might want to skip this step. Do this by adding the 'skipTests' parameter: `mvn clean install -DskipTests=true`. +Building the project is as simple as issuing `mvn clean install` or `mvn clean verify`. This will include running all the tests of the project. Because this takes a while, you might want to skip this step. Do this by adding the 'skipTests' parameter: `mvn clean install -DskipTests`.