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
0
votes
1 answer

Gradle tasks not shown in eclipse BuildShip plugin

I've written these tasks: task createQAWar(type: War, dependsOn: classes) { ... } task createDevelopmentWar(type: War, dependsOn: classes) { ... } task createProductionWar(type: War, dependsOn: classes) { ... } task…
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
1 answer

STS, Buildship 2.x and annotation processor

I installed STS 3.8.4, created a Spring poject starter of type Gradle (Buildship 2.x) and I can observed that the Eclipse annotation processor not working. The spring-boot-configuration-processor is not recognized, is this normal ? Thanks
atoua
  • 31
  • 2
  • 10
0
votes
1 answer

facing error "Unable to start the daemon process" while importing gradle project in Spring Tool Suite

I have installed STS (Spring tool Suite) on my machine and tried importing an existing gradle project but it's giving me an error. I already checked for jdk path environment variable. The error is Loading Gradle project preview failed due to an…
BeginnersSake
  • 650
  • 2
  • 18
  • 30
0
votes
2 answers

After import of an existing project, the gradle version is less then when creating a Gradle project

When I create a new Gradle project, the Gradle version is 3.3. But when I import an existing Gradle project, the Gradle version is 2.4.11. How are the version determined, especially the last one, because as far as I can see, there is no Gradle…
ericj
  • 2,138
  • 27
  • 44
0
votes
1 answer

Spring bootRun not available from within Eclipse gradle

I am just starting out with Spring and have successfully setup and am running the RESTful tutorial using gradle buildship within Eclipse. https://spring.io/guides/gs/rest-service/#initial However, one thing I cannot get working within Eclipse is it…
Neil Walker
  • 6,400
  • 14
  • 57
  • 86
0
votes
1 answer

Adding project dependencies in a multi project Buildship workspace

I have two projects, client and shared. Both are Buildship projects and have external dependencies defined and working. Here's my multi project setup: workspace/ shared/ build.gradle client/ build.gradle …
Dan Gravell
  • 7,855
  • 7
  • 41
  • 64
0
votes
1 answer

How to run a single task in in Eclipse with gradle buildship?

Currently I have in my gradle.build file the tasks: task helloA { println 'hello A!' } task helloB { println 'hello B!' } However executing task helloA via Gradle Tasks/other/helloA prints on the console: hello A! hello B! :helloA…
blauerschluessel
  • 219
  • 1
  • 3
  • 14
0
votes
1 answer

Can Eclipse Buildship (Gradle plugin) update my java project library path configuration based on it's dependencies?

I am migrating my Java (EJB project) and Dynamic Web projects in Eclipse to Gradle. I am using Buildship. My projects have a Eclipse Library configuration, which it was a pain to maintain. With grade this is great as I just add those "dependencies"…
icordoba
  • 1,834
  • 2
  • 33
  • 60
0
votes
2 answers

How to change the default output folder for generated apk files?

When I use the gradle task to create an android .apk file it outputs it the the build\javafxports\android folder of the project (both the regular and unaligned files). I couldn't find a setting to change the output folder. When I export a jar in…
Mark
  • 2,167
  • 4
  • 32
  • 64
0
votes
1 answer

How can the source attachment, Javadoc location and native library location be specified for a Gradle project's local dependency, in Eclipse?

The Eclipse IDE for Java Developers (Neon) as well as the default Gradle plugin (Buildship?) are used. A Gradle Git project was created using the Eclipse IDE. A local JAR is stored within the workspace/ProjectName/lib/nameOfJAR.jar directory. It was…
pm79080
  • 5
  • 2
0
votes
1 answer

Do dependencies need to be added through both the Eclipse GUI and the Gradle configuration files?

Two Gradle Git projects need to be created, within the same repository, using the Eclipse IDE. Project A depends upon a third-party library (a JAR, source code, Javadoc and natives) and project B depends upon project A. Without Gradle, both projects…
pm79080
  • 5
  • 2
0
votes
1 answer

How do I get Gradle Buildship to build my JAXB code successfully in Eclipse?

I have a Java project that depends on a set of JAXB generated classes from a set of enterprise XML schemas. I have been using XJC through the command line to generate my JAXB classes up to this point, but I am now trying to integrate my xjc command…
Anton Cagle
  • 27
  • 1
  • 4
0
votes
2 answers

How to download Spring and Hibernate JARs through Gradle

I'm currently using Eclipse with Buildship plugin. I want to download Spring and Hibernate JARs into my gradle project, how do I do this? I placed the following in my build.gradle file for dependencies: apply plugin: 'java' dependencies { …
Cosa Ya
  • 75
  • 1
  • 4
0
votes
2 answers

Errors in Eclipse (Spring Tool Suite) in Spring Security

I'm attempting to become a contributor for Spring Security, it's not going so well. I am getting validation errors in Spring Tool Suite although the build/compilation of the .gradle project is succeeding. The errors show up in the "Markers" view in…
KyleM
  • 4,445
  • 9
  • 46
  • 78
0
votes
0 answers

Error occurs when creating Xtext project in Eclipse, using Gradle and Buildship

I am learning about Xtext, and am following the 5 Minutes Tutorial found here: https://eclipse.org/Xtext/documentation/101_five_minutes.html I started by downloading and installing the Eclipse Mars package called "Eclipse IDE for Java and DSL…
Don Hopkins
  • 109
  • 6
1 2 3
8
9