annotate sample-maven-project/src/main/java/de/iobjects/test/App.java @ 26:19ef091c0ef3 default tip

add setup of shell env through ansible
author Dirk Olmes <dirk.olmes@codedo.de>
date Tue, 15 Nov 2016 16:34:28 +0000
parents 5353da33cc57
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 package de.iobjects.test;
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 /**
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4 * Hello world!
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 *
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 */
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 public class App
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 {
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 public static void main( String[] args )
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 {
17
5353da33cc57 simple change
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 14
diff changeset
11 System.out.println( "Hello World!!" );
14
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 }
3417db828923 adding sample maven project
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13 }