You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ke...@apache.org on 2011/07/23 12:19:43 UTC

svn commit: r1150082 - /incubator/isis/trunk/framework/tck/pom.xml

Author: kevin
Date: Sat Jul 23 10:19:43 2011
New Revision: 1150082

URL: http://svn.apache.org/viewvc?rev=1150082&view=rev
Log:
ISIS-108: Fixed pom to include missing site deploy distribution management options - prevented site deploy build of various viewers (xhtml, wicket, etc)

Modified:
    incubator/isis/trunk/framework/tck/pom.xml

Modified: incubator/isis/trunk/framework/tck/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/tck/pom.xml?rev=1150082&r1=1150081&r2=1150082&view=diff
==============================================================================
--- incubator/isis/trunk/framework/tck/pom.xml (original)
+++ incubator/isis/trunk/framework/tck/pom.xml Sat Jul 23 10:19:43 2011
@@ -497,6 +497,31 @@
         </dependencies>
     </dependencyManagement>
 
+
+    <distributionManagement>
+        <site>
+            <id>isis-site</id>
+            <name>Apache Isis Site</name>
+            <url>${distMgmtSiteUrl}</url>
+        </site>
+    </distributionManagement>
+    <profiles>
+        <profile>
+            <id>deploy-local</id>
+            <activation>
+                <property>
+                    <name>deploy</name>
+                    <value>local</value>
+                </property>
+            </activation>
+            <!-- to deploy locally -->
+            <properties>
+                <distMgmtSiteUrl>file:///tmp/m2-sites/isis</distMgmtSiteUrl>
+            </properties>
+        </profile>
+    </profiles>
+
+
   <modules>
     <module>tck-dom</module>
     <module>tck-fixture</module>