Questions tagged [buildship]

Buildship is a collection of Eclipse plug-ins that provide support for building software using Gradle.

Buildship is a collection of Eclipse plug-ins that provide support for building software using Gradle.

Buildship aims to provide a deep integration of Gradle into Eclipse. Buildship also aims to make the Eclipse IDE more powerful by allowing the user to do more from within the IDE.

See https://projects.eclipse.org/projects/tools.buildship and https://gradle.org/eclipse/

121 questions
1
vote
1 answer

Why can't gradlew build command compile and build only the things that have changed and make the process faster?

The feature build automatically under the eclipse is much faster than the ./gradlew build. My findings after some research is that it compiles and builds only the changed file and replaces it in build folder. So why can't ./gradlew build command…
royatirek
  • 2,437
  • 2
  • 20
  • 34
1
vote
0 answers

Eclipse 2019-06 with buildship integration: DocumentBuilder is not accessible

I have a multi-project gradle setup (settings.gradle) which I import to eclipse using OpenJDK-12. After importing I get compile errors (on some but not all projects) like this: The type javax.xml.parsers.DocumentBuilder is not accessible If I clean…
rli
  • 1,745
  • 1
  • 14
  • 25
1
vote
1 answer

What is Buildship and is there a Gradle plugin for NetBeans?

Could someone explain this feature named "Buildship" in the Eclipse IDE marketplace? Is this feature available for the Netbeans IDE?
Charlie.yu
  • 11
  • 1
1
vote
2 answers

Eclipse: How can I have gradle dependencies deployed to Tomcat

I'm creating a web project using Gradle (buildship) in Eclipse (WTP). I've put the libraries I need as "implementation" dependencies in my build.gradle, however they are not copied to Tomcat when I try to run the project from within Eclipse. When I…
niqueco
  • 2,261
  • 19
  • 39
1
vote
1 answer

Gradle (wrapper) + STS + Spring Boot: Error: Could not find or load main class 1.1,

One project among many started giving me the following error when running Gradle Tasks -> application -> bootRun: Error: Could not find or load main class 1.1, However, the following both work: Running ./gradlew bootRun from the…
Eric Swanson
  • 820
  • 1
  • 9
  • 19
1
vote
1 answer

Gradle Buildship project dependency cycle false positive

So I've got a multi-project gradle build consisting of: myapp myapp2 shared testLib Where myapp and myapp2 have compile dependencies on shared. The testLib project also has a compile project dependency on shared. It exists to define some unit test…
Tom Tresansky
  • 19,364
  • 17
  • 93
  • 129
1
vote
1 answer

How to create WAR for a composite project in Gradle?

I am using Eclipse Buildship V2.1.2 for Gradle. I have two independent web projects, P1 and P2 and a project, P3 which acts as dependency for all other projects. My task is to create one main build with which I can build and generate WAR files from…
Malini Kennady
  • 371
  • 1
  • 7
  • 19
1
vote
0 answers

What's wrong with my gradle dependency?

Project structure: + root + lib-test1 - build.gradle - settings.gradle + lib-test2 - build.gradle - settings.gradle The settings.gradle file of my test2: include ':lib-test1' project(':lib-test1').projectDir = new…
codenamezero
  • 2,724
  • 29
  • 64
1
vote
1 answer

Not possible to update to Buildship v. 2.1.2.v20170807-1324 from v. 2.0.2.v20170420-0909 in Eclipse Oxygen 4.7.0 build 20170620-1800

I've a new installation of Eclipse Oxygen v. 4.7.0 build 20170620-1800 with the Spring Tool plugin v. 3.9.0.201707061730-RELEASE. I'm trying to update the Buildship from v. 2.0.2.v20170420-0909 to v. 2.1.2.v20170807-1324 (as noticed from the Eclipse…
Andrea Bevilacqua
  • 1,197
  • 3
  • 15
  • 27
1
vote
3 answers

BuildShip Gradle plugin on Eclipse, reports "syncrhonize gradle project workspace failed"

Synchronize Gradle projects with workspace failed due to an unsupported configuration in the referenced Gradle build. Project at '/home/jsiddharth/workspace/v2/mnoxwebservicesv2' can't be named 'mnoxwebserviceendpoints-..' because it's located…
Siddharth
  • 9,349
  • 16
  • 86
  • 148
1
vote
1 answer

buildship 2.0 spring sts 3.8.3

I want to install on eclipse neon.2, spring sts 3.8.3 and buildship 2.0 but I can't make Spring-boot starter about type:gradle(buildship) How can I install spring-boot starter? I don't know how can find it. Please help me.
1
vote
1 answer

Use build.gradle for deployment

I'm learning how to use gradle to build my java applications. Currently I'm using eclipse with buildship plugin. I have it building my JARs and WARs, and also have gradle running my JUnit and Selenium tests. I like that it pulls in the dependencies…
Topani
  • 23
  • 1
  • 6
1
vote
1 answer

How to remove a project from the Gradle Tasks view or clean the view?

Here is my Gradle Tasks view: There is a ThisProj project which is not in the eclipse workspace but it is in the Gradle Tasks. The problem was that while the project was in the workspace it appeared twice in this view so I removed it from the…
Mark
  • 2,167
  • 4
  • 32
  • 64
1
vote
1 answer

No build.gradle is created when importing an existing Java project with Gradle in Eclipse

I have Java projects in Eclipse Mars. I have Buildship 1.0.21 and Gradle 3.1. In Eclipse I right click a project and press Import > Gradle Project and go through the wizard. When I'm done my project has its Gradle nature G symbol but no…
Mark
  • 2,167
  • 4
  • 32
  • 64
1
vote
1 answer

Eclipse WTP + Gradle Buildship not deploying all project dependencies

Config: Eclipse Neon.1. BuildShip plugin 1.0.21. Gradle 3.2. Tomcat 8.0.33. Project Structure: CmbProduct Common CommonServer Model CaBridge WebApp I've got a Web Services application project ("WebApp") which is dependent on multiple other…
Mike Cooper
  • 1,065
  • 3
  • 13
  • 34
1 2 3
8 9