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