diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml
index 7256463..b27c8e7 100644
--- a/.github/workflows/deploy_docs.yml
+++ b/.github/workflows/deploy_docs.yml
@@ -21,13 +21,14 @@ jobs:
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- - uses: actions/checkout@v2
- - name: Set up JDK 1.8
+ - name: Check-out
+ uses: actions/checkout@v2
+ - name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up Maven settings
- uses: Bernardo-MG/deployment-maven-settings-action@master
+ uses: bernardo-mg/deployment-maven-settings-action@v1.1.2
with:
version-type: ${{ steps.extract_branch.outputs.branch }}
env:
@@ -37,5 +38,9 @@ jobs:
DEPLOY_DOCS_DEVELOP_PASSWORD: ${{ secrets.DEPLOY_DOCS_DEVELOP_PASSWORD }}
DEPLOY_DOCS_SITE: ${{ secrets.DEPLOY_DOCS_SITE }}
DEPLOY_DOCS_DEVELOP_SITE: ${{ secrets.DEPLOY_DOCS_DEVELOP_SITE }}
- - name: Deploy docs
- run: mvn site site:deploy -B -P deployment --settings settings.xml
+ - name: Deploy development docs
+ if: steps.extract_branch.outputs.branch == 'develop'
+ run: mvn verify site site:deploy -B -P deployment,deployment-development --settings settings.xml
+ - name: Deploy release docs
+ if: steps.extract_branch.outputs.branch == 'master'
+ run: mvn verify site site:deploy -B -P deployment,deployment-release --settings settings.xml
diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
index 64aed0d..dc3e150 100644
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -11,10 +11,11 @@ jobs:
jdk: [ 8, 11, 14 ]
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 1.8
+ - name: Check-out
+ uses: actions/checkout@v2
+ - name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.jdk }}
- - name: Runs tests
+ - name: Run all tests
run: mvn clean verify
diff --git a/pom.xml b/pom.xml
index 32fe84c..2f092f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
com.bernardomg.tabletop
dice-cli
- 1.1.0
+ 1.1.1
jar
Dice Notation Tools CLI
@@ -30,8 +30,8 @@
- MIT License
- http://www.opensource.org/licenses/mit-license.php
+ Apache v2 License
+ http://www.apache.org/licenses/LICENSE-2.0.html
repo
@@ -174,11 +174,11 @@
- 2.0.2
+ 2.0.4
29.0-jre
5.6.2
- 3.3.3
- 4.4.0
+ 3.5.13
+ 4.5.1
2.13.3
1.7.30
2.3.1.RELEASE
@@ -403,8 +403,6 @@
${project.basedir}/src/config/checkstyle/checkstyle-rules.xml
-
- **/generated/**/*
@@ -412,22 +410,6 @@
org.codehaus.mojo
findbugs-maven-plugin
-
-
- ${project.basedir}/src/config/findbugs/findbugs-exclude.xml
-
-
-
-
-
- org.apache.maven.plugins
- maven-javadoc-plugin
-
-
-
- **/generated/**/*
-
-
@@ -439,10 +421,6 @@
${project.basedir}/src/config/pmd/pmd-rules.xml
-
-
- **/generated/**/*
-
diff --git a/readme.md b/readme.md
index 8a8d8cb..266f9fb 100644
--- a/readme.md
+++ b/readme.md
@@ -72,11 +72,11 @@ If you wish to fork or modify the code, visit the [GitHub project page][scm], wh
The project has been released under the [MIT License][license].
[issues]: https://github.com/bernardo-mg/dice-notation-java-cli/issues
-[javadoc-develop]: http://docs.bernardomg.com/development/maven/dice-notation-java-cli/apidocs
-[javadoc-release]: http://docs.bernardomg.com/maven/dice-notation-java-cli/apidocs
+[javadoc-develop]: https://docs.bernardomg.com/development/maven/dice-notation-java-cli/apidocs
+[javadoc-release]: https://docs.bernardomg.com/maven/dice-notation-java-cli/apidocs
[license]: https://www.opensource.org/licenses/mit-license.php
[scm]: https://github.com/bernardo-mg/dice-notation-java-cli
-[site-develop]: http://docs.bernardomg.com/development/maven/dice-notation-java-cli
-[site-release]: http://docs.bernardomg.com/maven/dice-notation-java-cli
+[site-develop]: https://docs.bernardomg.com/development/maven/dice-notation-java-cli
+[site-release]: https://docs.bernardomg.com/maven/dice-notation-java-cli
[dice-notation-tools]: https://github.com/Bernardo-MG/dice-notation-java
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4867fb8..a75d745 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -18,5 +18,10 @@
Extended and improved CLI.
+
+
+ Several small corrections.
+
+