From aa611540601a856b839b9331b5bdd133466c9a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schalk=20W=2E=20Cronj=C3=A9?= Date: Thu, 14 Jul 2016 00:33:56 +0100 Subject: [PATCH] Updated license header --- src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuild.groovy | 2 +- .../groovy/org/ysb33r/gradle/gnumake/GnuMakeExtension.groovy | 2 +- src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakePlugin.groovy | 2 +- .../groovy/org/ysb33r/gradle/gnumake/internal/Executor.groovy | 2 +- .../ysb33r/gradle/gnumake/internal/InputOutputMonitor.groovy | 2 +- .../org/ysb33r/gradle/gnumake/internal/MakeExecutor.groovy | 2 +- src/main/groovy/org/ysb33r/gradle/gnumake/internal/Rules.groovy | 2 +- .../groovy/org/ysb33r/gradle/gnumake/internal/TaskUtils.groovy | 2 +- .../org/ysb33r/gradle/gnumake/internal/TrackerTask.groovy | 2 +- .../groovy/org/ysb33r/gradle/gnumake/GnuMakeBuildSpec.groovy | 2 +- .../groovy/org/ysb33r/gradle/gnumake/GnuMakePluginSpec.groovy | 2 +- src/test/groovy/org/ysb33r/gradle/gnumake/RunMakeSpec.groovy | 2 +- .../org/ysb33r/gradle/gnumake/internal/FakeExecResult.groovy | 2 +- .../org/ysb33r/gradle/gnumake/internal/FakeExecutor.groovy | 2 +- .../org/ysb33r/gradle/gnumake/internal/TrackerTaskSpec.groovy | 2 +- src/test/resources/fake-make-scripts/fake-make.bat | 2 +- src/test/resources/fake-make-scripts/fake-make.sh | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuild.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuild.groovy index 9083587..1e786fd 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuild.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuild.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeExtension.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeExtension.groovy index 9fa547c..944d755 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeExtension.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakeExtension.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakePlugin.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakePlugin.groovy index f5fc83a..26b981f 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakePlugin.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/GnuMakePlugin.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Executor.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Executor.groovy index 1eb5a42..a85924f 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Executor.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Executor.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/InputOutputMonitor.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/InputOutputMonitor.groovy index eaf48c9..bdc0ed3 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/InputOutputMonitor.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/InputOutputMonitor.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/MakeExecutor.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/MakeExecutor.groovy index 3e3cfcb..72b38df 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/MakeExecutor.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/MakeExecutor.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Rules.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Rules.groovy index ca59d0f..39164a2 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Rules.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/Rules.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TaskUtils.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TaskUtils.groovy index f576560..ba09c41 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TaskUtils.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TaskUtils.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTask.groovy b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTask.groovy index 2604b83..a4716fd 100644 --- a/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTask.groovy +++ b/src/main/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTask.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuildSpec.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuildSpec.groovy index 4a25958..bdf52cd 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuildSpec.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakeBuildSpec.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakePluginSpec.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakePluginSpec.groovy index cfdbee7..7c622c9 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakePluginSpec.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/GnuMakePluginSpec.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/RunMakeSpec.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/RunMakeSpec.groovy index 8260f11..46d73b8 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/RunMakeSpec.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/RunMakeSpec.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecResult.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecResult.groovy index 1aff033..07e6b08 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecResult.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecResult.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecutor.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecutor.groovy index fd5791b..f831b22 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecutor.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/FakeExecutor.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTaskSpec.groovy b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTaskSpec.groovy index 0fa0d22..60e6258 100644 --- a/src/test/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTaskSpec.groovy +++ b/src/test/groovy/org/ysb33r/gradle/gnumake/internal/TrackerTaskSpec.groovy @@ -1,6 +1,6 @@ // // ============================================================================ -// (C) Copyright Schalk W. Cronje 2013-2015 +// (C) Copyright Schalk W. Cronje 2013-2016 // // This software is licensed under the Apache License 2.0 // See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/resources/fake-make-scripts/fake-make.bat b/src/test/resources/fake-make-scripts/fake-make.bat index fb7afea..38181c3 100644 --- a/src/test/resources/fake-make-scripts/fake-make.bat +++ b/src/test/resources/fake-make-scripts/fake-make.bat @@ -1,6 +1,6 @@ @REM @REM ============================================================================ -@REM (C) Copyright Schalk W. Cronje 2013-2015 +@REM (C) Copyright Schalk W. Cronje 2013-2016 @REM @REM This software is licensed under the Apache License 2.0 @REM See http://www.apache.org/licenses/LICENSE-2.0 for license details diff --git a/src/test/resources/fake-make-scripts/fake-make.sh b/src/test/resources/fake-make-scripts/fake-make.sh index a1eab9f..8068489 100755 --- a/src/test/resources/fake-make-scripts/fake-make.sh +++ b/src/test/resources/fake-make-scripts/fake-make.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # # ============================================================================ -# (C) Copyright Schalk W. Cronje 2013-2015 +# (C) Copyright Schalk W. Cronje 2013-2016 # # This software is licensed under the Apache License 2.0 # See http://www.apache.org/licenses/LICENSE-2.0 for license details