Events Development: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * esa To clone: <pre> git clone git@github.com:NovaOrdis/esa.git </pre>")
 
No edit summary
Line 8: Line 8:
<pre>
<pre>
git clone git@github.com:NovaOrdis/esa.git
git clone git@github.com:NovaOrdis/esa.git
</pre>
=TODO=
doc/Event Development.docx TODO section.
=Development=
==Unnumbered Development Release==
This will install a new unnumbered (same release number) "development" release locally:
<pre>
cdesa
mvn clean install; ./bin/install -f
</pre>
==Numbered Release==
1. Increment (or update) the version information from <tt>$PROJECT_HOME/pom.xml</tt>.
2. Build and install
<tt>-f</tt> is not necessary:
<pre>
mvn clean install; ./bin/install
</pre>
3. Check in
<pre>
mvn clean
git add .
git commit -m "starting ... version"
git push
</pre>
==Individual Unit Test==
<pre>
mvn -Dmaven.surefire.debug="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5012" -Dtest=EventsApplicationRuntimeTest clean test
</pre>
</pre>

Revision as of 22:03, 21 April 2016

Internal


To clone:

git clone git@github.com:NovaOrdis/esa.git


TODO

doc/Event Development.docx TODO section.

Development

Unnumbered Development Release

This will install a new unnumbered (same release number) "development" release locally:

cdesa
mvn clean install; ./bin/install -f

Numbered Release

1. Increment (or update) the version information from $PROJECT_HOME/pom.xml.

2. Build and install

-f is not necessary:

mvn clean install; ./bin/install

3. Check in

mvn clean
git add .
git commit -m "starting ... version"
git push

Individual Unit Test

mvn -Dmaven.surefire.debug="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5012" -Dtest=EventsApplicationRuntimeTest clean test