build hello world with gradle run
[ozzloy@gmail.com/gradleToEclipse] / src / main / java / hello / HelloWorld.java
CommitLineData
1abbfe62 1// copyright info at bottom
2
3package hello;
4
5public class HelloWorld {
6 public static void main(String[] args) {
7 System.out.println("hello world!");
8 }
9}
10
11/*
12# gradleToEclipse is a minimal gradle project made to build in eclipse
13# Copyright (C) 2015 Daniel Watson
14
15# This file is part of gradleToEclipse.
16
17# gradleToEclipse is free software: you can redistribute it and/or
18# modify it under the terms of the GNU Affero General Public License as
19# published by the Free Software Foundation, either version 3 of the
20# License, or (at your option) any later version.
21
22# gradleToEclipse is distributed in the hope that it will be useful,
23# but WITHOUT ANY WARRANTY; without even the implied warranty of
24# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25# GNU General Affero Public License for more details.
26
27# You should have received a copy of the GNU Affero General Public License
28# along with gradleToEclipse. If not, see <http://www.gnu.org/licenses/>.
29*/