merged
authorOleksandr Gavenko <gavenkoa@gmail.com>
Wed, 07 Nov 2012 19:41:21 +0200
changeset 1415 b4bb879d46ce
parent 1409 33a935b7eabc (current diff)
parent 1414 a1792156210d (diff)
child 1416 f994292b3721
merged
--- a/devel-proj-files.rst	Sat Nov 03 19:27:46 2012 +0200
+++ b/devel-proj-files.rst	Wed Nov 07 19:41:21 2012 +0200
@@ -15,6 +15,15 @@
  * AUTHORS
  * CHANGES
 
+This files can have suffixes to represent formating syntax:
+
+ * ``.txt`` - plain text
+ * ``.rst`` - reStructuredText
+ * ``.md`` - Markdown
+ * ``.rd``, ``.rdoc`` - RDtool
+
+and optionally compressed - ``.gz``.
+
 General info files.
 ===================
 
@@ -108,6 +117,7 @@
   CONTRIBUTORS THANKS CREDITS ACKNOWLEDGEMENTS
 
  * Casual/non-regular contributor list.
+ * Thanks for hardware/hosting/money etc.
 
 DEDICATION file.
 ----------------
@@ -367,8 +377,16 @@
 Version info files.
 ===================
 
-VERSION/RELDATE/RELEASE-DATE file.
-----------------------------------
+VERSION file.
+-------------
+
+ * Package version.
+ * Package name (optional).
+ * Release naming schema and version number semantics (optional).
+ * Release names and version relations (like starts, toys, animals, etc, optional).
+
+RELDATE/RELEASE-DATE file.
+--------------------------
 
 ANNOUNCE file.
 --------------
@@ -377,6 +395,9 @@
   ANNOUNCE
   ANNOUNCEMENT
 
+ * Only current release changes and notes. No history. Same text was sent to
+   mail lists as announce.
+
 HISTORY file.
 =============
 
--- a/maven.rst	Sat Nov 03 19:27:46 2012 +0200
+++ b/maven.rst	Wed Nov 07 19:41:21 2012 +0200
@@ -35,9 +35,20 @@
 
   $ mvn -X ...
 
+What actual code processed by Maven::
+
+  $ mvn help:effective-settings
+  $ mvn help:effective-pom
+
 Run Java main from Maven.
 =========================
 ::
 
   mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" -Dexec.args="arg0 arg1 arg2"
 
+How do I skip the tests during the default lifecycle?
+=====================================================
+::
+
+  $ mvn -DskipTests package
+