Removed application plugin from empty projects so that root-level build will work

signature-implementation
Tal Moran 2015-11-10 13:56:45 +02:00
parent c34e3b77c6
commit aaf26dc2b1
3 changed files with 18 additions and 7 deletions

View File

@ -8,12 +8,14 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
// Uncomment both lines below to define an application (must set mainClassName
apply plugin: 'maven-publish'
// Uncomment the lines below to define an application
// (this will also allow you to build a "fatCapsule" which includes
// the entire application, including all dependencies in a single jar)
//apply plugin: 'application'
//mainClassName='your.main.ApplicationClass'
apply plugin: 'maven-publish'
// Is this a snapshot version?
ext { isSnapshot = false }

View File

@ -8,10 +8,15 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'maven-publish'
// Uncomment the lines below to define an application
// (this will also allow you to build a "fatCapsule" which includes
// the entire application, including all dependencies in a single jar)
//apply plugin: 'application'
//mainClassName='your.main.ApplicationClass'
// Is this a snapshot version?
ext { isSnapshot = false }

View File

@ -8,10 +8,14 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'maven-publish'
// Uncomment the lines below to define an application
// (this will also allow you to build a "fatCapsule" which includes
// the entire application, including all dependencies in a single jar)
//apply plugin: 'application'
//mainClassName='your.main.ApplicationClass'
// Is this a snapshot version?
ext { isSnapshot = false }