You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2013/10/22 00:13:40 UTC

svn commit: r883636 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/contributors/recreating-an-archetype.html content/contributors/release-process.html

Author: buildbot
Date: Mon Oct 21 22:13:39 2013
New Revision: 883636

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/contributors/recreating-an-archetype.html
    websites/staging/isis/trunk/content/contributors/release-process.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Oct 21 22:13:39 2013
@@ -1 +1 @@
-1534342
+1534397

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Oct 21 22:13:39 2013
@@ -1 +1 @@
-1534342
+1534397

Modified: websites/staging/isis/trunk/content/contributors/recreating-an-archetype.html
==============================================================================
--- websites/staging/isis/trunk/content/contributors/recreating-an-archetype.html (original)
+++ websites/staging/isis/trunk/content/contributors/recreating-an-archetype.html Mon Oct 21 22:13:39 2013
@@ -289,7 +289,7 @@ cd example/application/quickstart_wicket
 
 <pre>
 mvn org.apache.rat:apache-rat-plugin:check -D rat.numUnapprovedLicenses=50 -o
-for a in `find . -name rat.txt -print`; do grep '!???' $a; done
+for a in `/bin/find . -name rat.txt -print`; do grep '!???' $a; done
 </pre>
 
 <p>Finally, double check that the app is running satisfactorily:</p>
@@ -314,15 +314,15 @@ mvn clean
 <p>To view the remaining files/directories that needs removing, use:</p>
 
 <pre>
-for a in .project .classpath .settings bin target-ide; do find . -name $a -print; done
-find . -name "*.log" -print
+for a in .project .classpath .settings bin target-ide; do /bin/find . -name $a -print; done
+/bin/find . -name "*.log" -print
 </pre>
 
 <p>To actually delete these files, use:</p>
 
 <pre>
-for a in .project .classpath .settings bin target-ide; do find . -name $a -exec rm -r {} \;; done
-find . -name "*.log" -exec rm {} \;
+for a in .project .classpath .settings bin target-ide; do /bin/find . -name $a -exec rm -r {} \;; done
+/bin/find . -name "*.log" -exec rm {} \;
 </pre>
 
 <p>Now we can create the archetype:</p>

Modified: websites/staging/isis/trunk/content/contributors/release-process.html
==============================================================================
--- websites/staging/isis/trunk/content/contributors/release-process.html (original)
+++ websites/staging/isis/trunk/content/contributors/release-process.html Mon Oct 21 22:13:39 2013
@@ -440,7 +440,7 @@ Unless otherwise stated, you should assu
   also releasing core at the same time as the component, then you will need to go through the release process for core first, then come back round to release the component.</p>
 </blockquote>
 
-<p>Also, if there is a tck test module with <code>oa.isis.core:isis-core-tck</code> as its parent, then make sure that it is also updated.</p>
+<p>Also, if there is a tck test module with <code>oa.isis.core:isis-core-tck</code> as its parent, then make sure that it the parent is also updated to the non-<code>SNAPSHOT</code> version.  <em>However</em>, the tck module's dependency on the component (typically a property) should remain as <code>SNAPSHOT</code>; it will be updated automatically when the <code>mvn release:prepare</code> is performed.</p>
 
 <h3>Check no SNAPSHOT dependencies</h3>