Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I remove the 'jar' task in gradle build?

Tags:

gradle

When I use the code below, a file of jar will generate after gradle build.

apply plugin 'java'

Is there any settings won't generate the file of jar??

I can write a custom plugins,but the code below was wrong.

dependencies {
    compile project(':crm.common')
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

I want find a way that donot generate the file of jar. And can run compile in dependencies. Is there any way can do that???

like image 914
user2269774 Avatar asked Oct 23 '16 11:10

user2269774


Video Answer


1 Answers

You can do that by 2 ways:

  1. explicitly exclude the jar task from execution: gradle build -x jar

  2. disable the jar task in build.gradle: apply plugin: 'java' jar.enabled = false

like image 83
Crazyjavahacking Avatar answered Sep 23 '22 20:09

Crazyjavahacking