Skip to content

Commit

Permalink
just a wild guess - don't use property that is defined in the pom, ju…
Browse files Browse the repository at this point in the history
…st build-in property and make sure we use the same path as what assembly.dir is set to in pom.xml

this is to try to workaround a problem with maven release plugin
  • Loading branch information
jmazzitelli committed May 20, 2015
1 parent b151b63 commit d05af93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<fileSets>
<!-- non-binary files -->
<fileSet>
<directory>${assembly.dir}</directory>
<directory>${project.build.directory}/assembly</directory>
<outputDirectory></outputDirectory>
<excludes>
<exclude>**/*.sh</exclude>
Expand All @@ -42,7 +42,7 @@

<!-- all scripts and other files that go in the /bin directory - will have u+x file perm set-->
<fileSet>
<directory>${assembly.dir}</directory>
<directory>${project.build.directory}/assembly</directory>
<outputDirectory></outputDirectory>
<includes>
<include>**/*.sh</include>
Expand Down

0 comments on commit d05af93

Please sign in to comment.