This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new abf1865 ZOOKEEPER-3498: Move jute generated sources to generated-source/java
abf1865 is described below
commit abf1865c3a0701beef1dddd128e9ad25712a4c33
Author: tison <wander4096@gmail.com>
AuthorDate: Thu Aug 8 17:00:54 2019 +0200
ZOOKEEPER-3498: Move jute generated sources to generated-source/java
Avoid mixup with class files.
cc phunt anmolnar eolivelli nkalmar
Author: tison <wander4096@gmail.com>
Reviewers: eolivelli@apache.org, andor@apache.org
Closes #1043 from TisonKun/ZOOKEEPER-3498
---
zookeeper-jute/pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/zookeeper-jute/pom.xml b/zookeeper-jute/pom.xml
index e5d192b..db3881b 100755
--- a/zookeeper-jute/pom.xml
+++ b/zookeeper-jute/pom.xml
@@ -65,7 +65,7 @@
</includes>
<lookAhead>2</lookAhead>
<isStatic>false</isStatic>
- <outputDirectory>${project.build.directory}/classes/</outputDirectory>
+ <outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory>
</configuration>
</execution>
</executions>
@@ -94,7 +94,7 @@
<goal>exec</goal>
</goals>
<configuration>
- <workingDirectory>${project.build.directory}/classes/</workingDirectory>
+ <workingDirectory>${project.build.directory}/generated-sources/java</workingDirectory>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
@@ -139,7 +139,7 @@
</goals>
<configuration>
<sources>
- <source>${basedir}/target/classes</source>
+ <source>${basedir}/target/generated-sources/java</source>
</sources>
</configuration>
</execution>
|