From b5316b48c4afb46ad565f25fad3f0d64174e6b01 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Wed, 19 Jul 2017 20:07:14 +0200 Subject: [PATCH 1/2] Update changelog, refs #499 --- src/site/markdown/overview/changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/site/markdown/overview/changelog.md b/src/site/markdown/overview/changelog.md index cc8e601220..960c237aec 100644 --- a/src/site/markdown/overview/changelog.md +++ b/src/site/markdown/overview/changelog.md @@ -89,5 +89,6 @@ Based on those metrics, rules like "GodClass" detection can be implemented more * [#492](https://github.com/pmd/pmd/pull/492): \[java] Typeresolution for overloaded methods - [Bendegúz Nagy](https://github.com/WinterGrascph) * [#495](https://github.com/pmd/pmd/pull/495): \[core] Custom rule reinitialization code - [Clément Fournier](https://github.com/oowekyala) * [#479](https://github.com/pmd/pmd/pull/479): \[core] Typesafe and immutable properties - [Clément Fournier](https://github.com/oowekyala) +* [#499](https://github.com/pmd/pmd/pull/499): \[java] Metrics memoization tests - [Clément Fournier](https://github.com/oowekyala) * [#501](https://github.com/pmd/pmd/pull/501): \[java] Add support for most specific vararg method type resolution - [Bendegúz Nagy](https://github.com/WinterGrascph) From 98670a736f672437b5797ff0dae7867d41cb9879 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Wed, 19 Jul 2017 20:47:07 +0200 Subject: [PATCH 2/2] [ci] increase timeout for site generation --- .travis/build-site.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis/build-site.sh b/.travis/build-site.sh index a4f30dc5bc..3d3fa5a43d 100644 --- a/.travis/build-site.sh +++ b/.travis/build-site.sh @@ -15,13 +15,13 @@ fi ( # Run the build, truncate output due to Travis log limits - echo -e "\n\nExecuting ./mvnw install...\n\n" + echo -e "\n\nExecuting ./mvnw install..." travis_wait ./mvnw install -DskipTests=true -B -V -q - echo -e "Finished executing ./mvnw install\n\n" + echo "Finished executing ./mvnw install" - echo -e "\n\nExecuting ./mvnw site site:stage...\n\n" - travis_wait ./mvnw site site:stage -DskipTests=true -Psite -B -V -q - echo -e "Finished executing ./mvnw site site:stage...\n\n" + echo -e "\n\nExecuting ./mvnw site site:stage... + travis_wait 40 ./mvnw site site:stage -DskipTests=true -Psite -B -V -q + echo "Finished executing ./mvnw site site:stage..." ) echo -e "\n\nCreating pmd-doc archive...\n\n"