HBASE-17079 HBase build fails on windows, hbase-archetype-builder is reason for failure
Signed-off-by: Andrew Purtell <apurtell@apache.org> Conflicts: hbase-archetypes/hbase-archetype-builder/pom.xml pom.xml
This commit is contained in:
parent
3601bd2958
commit
011c945f49
|
@ -244,24 +244,18 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
|
||||||
<version>1.4.0</version>
|
|
||||||
<executions>
|
<executions>
|
||||||
<!-- exec-maven-plugin executes chmod to make scripts executable -->
|
<!-- exec-maven-plugin executes chmod to make scripts executable -->
|
||||||
<execution>
|
<execution>
|
||||||
<id>make-scripts-executable</id>
|
<id>make-scripts-executable</id>
|
||||||
<phase>process-resources</phase>
|
<phase>process-resources</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>exec</goal>
|
<goal>run</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<executable>chmod</executable>
|
<chmod file="${project.basedir}/createArchetypes.sh" perm="+x" />
|
||||||
<arguments>
|
<chmod file="${project.basedir}/installArchetypes.sh" perm="+x" />
|
||||||
<argument>+x</argument>
|
|
||||||
<argument>/${project.basedir}/createArchetypes.sh</argument>
|
|
||||||
<argument>/${project.basedir}/installArchetypes.sh</argument>
|
|
||||||
</arguments>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
<!-- exec-maven-plugin executes script which invokes 'archetype:create-from-project'
|
<!-- exec-maven-plugin executes script which invokes 'archetype:create-from-project'
|
||||||
|
@ -270,10 +264,12 @@
|
||||||
<id>run-createArchetypes-script</id>
|
<id>run-createArchetypes-script</id>
|
||||||
<phase>compile</phase>
|
<phase>compile</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>exec</goal>
|
<goal>run</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<executable>/${project.basedir}/createArchetypes.sh</executable>
|
<exec executable="${shell-executable}" dir="${project.basedir}" failonerror="true">
|
||||||
|
<arg line="./createArchetypes.sh"/>
|
||||||
|
</exec>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
<!-- exec-maven-plugin executes script which invokes 'install' to install each
|
<!-- exec-maven-plugin executes script which invokes 'install' to install each
|
||||||
|
@ -285,10 +281,12 @@
|
||||||
<id>run-installArchetypes-script</id>
|
<id>run-installArchetypes-script</id>
|
||||||
<phase>install</phase>
|
<phase>install</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>exec</goal>
|
<goal>run</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<executable>/${project.basedir}/installArchetypes.sh</executable>
|
<exec executable="${shell-executable}" dir="${project.basedir}" failonerror="true">
|
||||||
|
<arg line="./installArchetypes.sh"/>
|
||||||
|
</exec>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -1354,6 +1354,7 @@
|
||||||
<extra.enforcer.version>1.0-beta-6</extra.enforcer.version>
|
<extra.enforcer.version>1.0-beta-6</extra.enforcer.version>
|
||||||
<!-- Location of test resources -->
|
<!-- Location of test resources -->
|
||||||
<test.build.classes>${project.build.directory}/test-classes</test.build.classes>
|
<test.build.classes>${project.build.directory}/test-classes</test.build.classes>
|
||||||
|
<shell-executable>bash</shell-executable>
|
||||||
</properties>
|
</properties>
|
||||||
<!-- Sorted by groups of dependencies then groupId and artifactId -->
|
<!-- Sorted by groups of dependencies then groupId and artifactId -->
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|
Loading…
Reference in New Issue