Error specifying sourceset.main.resources.srcDirs (log4j2.xml)

Hi,

First time Gradle user - using Gradle 2.2.1. I’ve implemented the following Gradle file to kick of a Java class: (note the commented line, will discuss it later)

apply plugin: 'java'
  dependencies {
 compile fileTree(dir: '../../../cqcore/WebContent/WEB-INF/lib', include: '*.jar')
 compile fileTree(dir: '../../../java-lib/libs/common', include: '*/*.jar')
 compile fileTree(dir: '../../../java-lib/libs/buildlibs', include: '*/*.jar')
}
  task BACKUP(type: JavaExec, description: 'Backup my workspace') {
 main = 'com.cq.devtools.users.nsdt.backup.BackupMyWorkspace'
 sourceSets.main.java.srcDirs = ['.', '../../../cqcore/src']
 // sourceSets.main.resources.srcDirs = ['.']
 classpath sourceSets.main.runtimeClasspath
}

When I execute it, I get the following error:

ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.

So I uncommented the line:

sourceSets.main.resources.srcDirs = ['.']

reasoning that the log4j2.xml file wasn’t picked up by me manually specifying the correct sourceSets.main.JAVA.srcDirs (as its not a .java file)

But now I get the following error:

FAILURE: Build failed with an exception.
* What went wrong:
Failed to capture snapshot of input files for task 'processResources' during up-to-date check.
See stacktrace for details.
> Failed to create MD5 hash for file C:\workspace\devtools\users\nsdt\.gradle.2.1\taskArtifacts\cache.properties.lock.

If I move the log4j2.xml file to a directory called “workaround” and change the Gradle file to use:

sourceSets.main.resources.srcDirs = ['./workaround']

It works…

Back to the original version that didn’t work and that I want to get working. If I execute it with --debug and --stacktrace I get a bit more information:

14:30:12.567 [ERROR] [org.gradle.BuildExceptionReporter]
14:30:12.570 [ERROR] [org.gradle.BuildExceptionReporter] FAILURE: Build failed with an exception.
14:30:12.571 [ERROR] [org.gradle.BuildExceptionReporter]
14:30:12.572 [ERROR] [org.gradle.BuildExceptionReporter] * What went wrong:
14:30:12.573 [ERROR] [org.gradle.BuildExceptionReporter] Failed to capture snapshot of input files for task 'processResources' during up-to-date check.
See stacktrace for details.
14:30:12.574 [ERROR] [org.gradle.BuildExceptionReporter] > Failed to create MD5 hash for file C:\workspace\devtools\users\nsdt\.gradle.2.1\taskArtifacts\cache.properties.lock.
14:30:12.575 [ERROR] [org.gradle.BuildExceptionReporter]
14:30:12.576 [ERROR] [org.gradle.BuildExceptionReporter] * Exception is:
14:30:12.577 [ERROR] [org.gradle.BuildExceptionReporter] org.gradle.api.UncheckedIOException: Failed to capture snapshot of input files for task 'processResources' during up-to-date check.
See stacktrace for details.
14:30:12.578 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.rules.TaskUpToDateState.<init>(TaskUpToDateState.java:59)
14:30:12.579 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.changes.DefaultTaskArtifactStateRepository$TaskArtifactStateImpl.getStates(DefaultTaskArtifactStateRepository.java:126)
14:30:12.580 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.changes.DefaultTaskArtifactStateRepository$TaskArtifactStateImpl.isUpToDate(DefaultTaskArtifactStateRepository.java:69)
14:30:12.581 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:52)
14:30:12.582 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58)
14:30:12.583 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:42)
14:30:12.584 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52)
14:30:12.584 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:53)
14:30:12.585 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43)
14:30:12.586 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.AbstractTask.executeWithoutThrowingTaskFailure(AbstractTask.java:305)
14:30:12.587 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.executeTask(AbstractTaskPlanExecutor.java:79)
14:30:12.587 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.processTask(AbstractTaskPlanExecutor.java:63)
14:30:12.588 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.run(AbstractTaskPlanExecutor.java:51)
14:30:12.589 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor.process(DefaultTaskPlanExecutor.java:23)
14:30:12.589 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter.execute(DefaultTaskGraphExecuter.java:88)
14:30:12.590 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.SelectedTaskExecutionAction.execute(SelectedTaskExecutionAction.java:29)
14:30:12.591 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:62)
14:30:12.592 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DefaultBuildExecuter.access$200(DefaultBuildExecuter.java:23)
14:30:12.593 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DefaultBuildExecuter$2.proceed(DefaultBuildExecuter.java:68)
14:30:12.593 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DryRunBuildExecutionAction.execute(DryRunBuildExecutionAction.java:32)
14:30:12.594 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:62)
14:30:12.595 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:55)
14:30:12.595 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.initialization.DefaultGradleLauncher.doBuildStages(DefaultGradleLauncher.java:149)
14:30:12.596 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.initialization.DefaultGradleLauncher.doBuild(DefaultGradleLauncher.java:106)
14:30:12.597 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.initialization.DefaultGradleLauncher.run(DefaultGradleLauncher.java:86)
14:30:12.598 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.exec.InProcessBuildActionExecuter$DefaultBuildController.run(InProcessBuildActionExecuter.java:80)
14:30:12.599 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.ExecuteBuildAction.run(ExecuteBuildAction.java:33)
14:30:12.600 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.ExecuteBuildAction.run(ExecuteBuildAction.java:24)
14:30:12.600 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:36)
14:30:12.601 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:26)
14:30:12.602 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.RunBuildAction.run(RunBuildAction.java:51)
14:30:12.603 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.internal.Actions$RunnableActionAdapter.execute(Actions.java:171)
14:30:12.603 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:237)
14:30:12.604 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:210)
14:30:12.605 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:35)
14:30:12.606 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:24)
14:30:12.606 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:206)
14:30:12.607 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:169)
14:30:12.608 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:33)
14:30:12.609 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:22)
14:30:12.610 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.Main.doAction(Main.java:33)
14:30:12.611 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.bootstrap.EntryPoint.run(EntryPoint.java:45)
14:30:12.612 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.bootstrap.ProcessBootstrap.runNoExit(ProcessBootstrap.java:54)
14:30:12.612 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.bootstrap.ProcessBootstrap.run(ProcessBootstrap.java:35)
14:30:12.613 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.launcher.GradleMain.main(GradleMain.java:23)
14:30:12.614 [ERROR] [org.gradle.BuildExceptionReporter] Caused by: org.gradle.api.UncheckedIOException: Failed to create MD5 hash for file C:\workspace\devtools\users\nsdt\.gradle.2.1\taskArtifacts\cache.properties.lock.
14:30:12.614 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.internal.hash.HashUtil.createHash(HashUtil.java:37)
14:30:12.615 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.hash.DefaultHasher.hash(DefaultHasher.java:24)
14:30:12.616 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.state.CachingFileSnapshotter.snapshot(CachingFileSnapshotter.java:46)
14:30:12.617 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.state.CachingFileSnapshotter.snapshot(CachingFileSnapshotter.java:27)
14:30:12.618 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.state.DefaultFileCollectionSnapshotter$1.run(DefaultFileCollectionSnapshotter.java:56)
14:30:12.619 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.internal.Factories$1.create(Factories.java:22)
14:30:12.620 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.cache.internal.DefaultCacheAccess.useCache(DefaultCacheAccess.java:187)
14:30:12.621 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.cache.internal.DefaultCacheAccess.useCache(DefaultCacheAccess.java:175)
14:30:12.621 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.cache.internal.DefaultPersistentDirectoryStore.useCache(DefaultPersistentDirectoryStore.java:106)
14:30:12.622 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.cache.internal.DefaultCacheFactory$ReferenceTrackingCache.useCache(DefaultCacheFactory.java:187)
14:30:12.623 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.state.DefaultTaskArtifactStateCacheAccess.useCache(DefaultTaskArtifactStateCacheAccess.java:60)
14:30:12.624 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.state.DefaultFileCollectionSnapshotter.snapshot(DefaultFileCollectionSnapshotter.java:52)
14:30:12.625 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.api.internal.changedetection.rules.TaskUpToDateState.<init>(TaskUpToDateState.java:55)
14:30:12.626 [ERROR] [org.gradle.BuildExceptionReporter]
      ... 44 more
14:30:12.627 [ERROR] [org.gradle.BuildExceptionReporter] Caused by: java.io.IOException: The process cannot access the file because another process has locked a portion of the file
14:30:12.628 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.internal.hash.HashUtil.createHash(HashUtil.java:50)
14:30:12.629 [ERROR] [org.gradle.BuildExceptionReporter]
      at org.gradle.internal.hash.HashUtil.createHash(HashUtil.java:34)
14:30:12.630 [ERROR] [org.gradle.BuildExceptionReporter]
      ... 56 more
14:30:12.630 [ERROR] [org.gradle.BuildExceptionReporter]

Any help or insight appreciated

What’s happening here is that you are setting the entire project directory as the resource dir of the main source set. This is causing gradle to step on itself during input/output hashing when it executes the processResources.

I’m not sure what the class you’re trying to execute in the JavaExec task is supposed to do, but setting the main source set resources directory to the project directory isn’t correct (i.e. won’t work). At the very least, this should be set to the actual resources directory of your main source set (conventionally src/main/resources). This configuration should be at the top level of the script as well, as it is not specific to your JavaExec task (and possibly unrelated).