Questions tagged [gradle-eclipse]

Gradle plugin for support of all Eclipse files for a project

182 questions
0
votes
0 answers

Using testng project from github to debug

I was able to clone Testng from Github (https://github.com/cbeust/testng.git). I have another project in my eclipse which has a few test cases that uses testng latest version as a maven dependency. I'd like to debug a few issues so I'd like to…
Damien-Amen
  • 7,232
  • 12
  • 46
  • 75
0
votes
1 answer

gradle eclipse dependencies, skipping testCompile/providedRuntime etc

Gradle is used to build a simple web application, split into handful of eclipse projects within the same workspace. Gradle script runs tests/creates deployable EAR file just fine. EAR file runs without any issues on a Liberty Profile…
Kartu
  • 51
  • 1
  • 5
0
votes
1 answer

Can Eclipse Neon determinate the projects I don't need for developement?

I'm working on a rather big RCP application, where only 2 / 100 projects are written and maintained by me. I do have dependencies on other projects and these projects might depend on another project as well. Since Eclipse takes a lot of time to…
Peter
  • 1,844
  • 2
  • 31
  • 55
0
votes
1 answer

Create Eclipse Java Gradle Project

I would like to use Eclipse with Gradle to build POJO's. I installed the Eclipse STS plugin as highlighted in the Gradle tutorial. I create Gradle project with Eclipse using File > New > Gradle(STS) > Gradle(STS) Project then type in the project…
skmansfield
  • 1,413
  • 3
  • 19
  • 41
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 gradle defines dependent jar files of a jar file?

dependencies { sources group: 'org.glassfish.jersey.media', name: 'jersey-media-moxy', version: '2.22.2', classifier: 'sources' } When I run the above dependencies through gradle, It downloads the jar file and related other jar files. My…
SkyWalker
  • 28,384
  • 14
  • 74
  • 132
0
votes
1 answer

What are the practical uses of gradle in selenium webdriver?

Am posting the below query after failed to understand the practical purpose of Gradle in selenium.. I am quite successful in using selenium webdriver without using Gradle or any other build tool. I have seen Selenium developers using Gradle as a…
TechDog
  • 3,039
  • 1
  • 24
  • 30
0
votes
1 answer

Gradle dependency for sqljdbc4-4.0.jar

I am not able to find gradle dependency for the same. it would be appreciated if any one provide the dependency for sqljdbc4-4.0.jar
Gaurav Rathi
  • 93
  • 10
0
votes
0 answers

How do you import a gradle project in eclipse?

I have installed https://marketplace.eclipse.org/content/gradle-integration-eclipse-0, which didn't change anything in the import dialog of eclipse (no specialized "Gradle" import option showing to select in eclipse, after the installation). I have…
matanster
  • 15,072
  • 19
  • 88
  • 167
0
votes
1 answer

eclipse uses a wrong user id in the path to the Gradle cached library

I installed the Gradle plugin, imported a Gradle/Groovy project into eclipse, but found all import statement has this error: Groovy Gradle"Project is missing required library" error in eclipse Then I found, as you can see below, it's using id…
Jirong Hu
  • 2,315
  • 8
  • 40
  • 63
0
votes
1 answer

convert maven jar and copy resources plugin to gradle

I am new to gradle and trying to convert my POM into gradle.build. I have convert the dependencies part and now converting plugin part. I have following in my POM org.apache.maven.plugins
Basit
  • 8,426
  • 46
  • 116
  • 196
0
votes
1 answer

Vaadin7 with mybatis and Spring

i am new to Vaadin and Mybatis-Spring. My UI class could not invoke the Service class using the @Autowired annotation. I have appended @Service for the service class. My…
Menaga
  • 105
  • 1
  • 3
  • 10
0
votes
1 answer

How to have Buildship recognize existing projects in Eclipse Mars

I just converted my Maven project to a gradle project. It was a multi project structure: master-project pom.xml ---->project1 -------->pom.xml ---->project2 -------->pom.xml ---->project3 -------->pom.xml I ran a gradle init on it and have this…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
0
votes
0 answers

How to configure two STS gradle projects in eclipse to use another STS gradle project?

I have a two spring boot applications. Each application is setup as a separate eclipse project. Let's call them project A and project B. I also have another project C that contains domain classes. Project A and B need to use project C. All projects…
James
  • 2,876
  • 18
  • 72
  • 116