You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2018/01/08 17:09:03 UTC

[3/4] incubator-taverna-server git commit: Don't fail git plugin if .git/ is missing

Don't fail git plugin if .git/ is missing


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/commit/764f2a33
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/tree/764f2a33
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/diff/764f2a33

Branch: refs/heads/master
Commit: 764f2a330bd78337118cb3bf0c7ab65aa1d6593a
Parents: de6a04a
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Mon Jan 8 17:06:49 2018 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Mon Jan 8 17:06:49 2018 +0000

----------------------------------------------------------------------
 taverna-server-webapp/pom.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/764f2a33/taverna-server-webapp/pom.xml
----------------------------------------------------------------------
diff --git a/taverna-server-webapp/pom.xml b/taverna-server-webapp/pom.xml
index cd3b703..b39854a 100644
--- a/taverna-server-webapp/pom.xml
+++ b/taverna-server-webapp/pom.xml
@@ -580,6 +580,8 @@ limitations under the License.
 					<dotGitDirectory>${project.basedir}/../.git</dotGitDirectory>
 					<prefix>git</prefix>
 					<verbose>true</verbose>
+					<!-- .git is not included in -source releases -->
+					<failOnNoGitDirectory>false</failOnNoGitDirectory>
 				</configuration>
 			</plugin>
 			<plugin>