Skip to content

Commit

Permalink
[Misc] Removed the 6 build warnings:
Browse files Browse the repository at this point in the history
[WARNING] Cannot include project artifact: org.xwiki.enterprise:xwiki-enterprise-jetty-hsqldb:pom:5.0-SNAPSHOT; it doesn't have an associated file or directory.
  • Loading branch information
vmassol committed Feb 15, 2013
1 parent 980877a commit ba374e2
Showing 1 changed file with 12 additions and 0 deletions.
Expand Up @@ -39,6 +39,8 @@
<exclude>**/hibernate.cfg.xml</exclude>
</excludes>
</unpackOptions>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<!-- ROOT webapp, redirecting to /xwiki/ when no application is specified. -->
<dependencySet>
Expand All @@ -47,6 +49,8 @@
</includes>
<outputDirectory>webapps/root</outputDirectory>
<unpack>true</unpack>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<!-- Unpack Jetty files
Note1: We need to apply filtering to resolve the "xwikiDataDir" property in start shell scripts.
Expand All @@ -70,6 +74,8 @@
<!-- Extracting some resources from the dependency somehow looses the file permissions, so we need to set them
again so that the start xwiki scripts are executable... -->
<fileMode>755</fileMode>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<dependencySet>
<includes>
Expand All @@ -85,6 +91,8 @@
<exclude>**/start_xwiki*.*</exclude>
</excludes>
</unpackOptions>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<!-- Add JDBC driver for the database to use. -->
<dependencySet>
Expand All @@ -93,6 +101,8 @@
</includes>
<outputDirectory>webapps/xwiki/WEB-INF/lib</outputDirectory>
<unpack>false</unpack>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<!-- Unpack the data files to package it in the distribution -->
<dependencySet>
Expand All @@ -101,6 +111,8 @@
</includes>
<outputDirectory>/${xwikiDataDir}/</outputDirectory>
<unpack>true</unpack>
<!-- Needed to prevent warning since our project has a pom packaging and is not producing any artifact -->
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
</dependencySets>
<!-- Add Hibernate configuration file -->
Expand Down

0 comments on commit ba374e2

Please sign in to comment.