Skip to main content
16-Pearl
September 18, 2019
Solved

Gradle Plugin error in Thingworx Eclipse plugin

  • September 18, 2019
  • 1 reply
  • 2189 views

Hello,

I am trying to develop the custom widget. I already installed Eclipse eclipse-jee-2019-06-R-win32-x86_64.

In my Eclipse project, I don't have this option "Run as -> Gradle (STS) Build". For that, I am trying to install below Gradle plugin from Eclipse Market place.

 I am getting error while installing the Gradle . Please refer the attachment.Could you tell me how to solve this issue?

Thank You in Advance

Latha

Best answer by posipova

I apologize, I misread your question. Since the problem is with the Eclipse marketplace - you may need to reach out to their support/forums as it's not a PTC product.

1 reply

20-Turquoise
September 19, 2019

Try updating the build.gradle in the Eclipse extension project as follow :

...
dependencies {
 compile fileTree(dir:'twx-lib', include:'*.jar')
 compile fileTree(dir:'lib', include:'*.jar')
 compile group: 'org.json', name: 'json', version: '20090211' // add this line
}

// add this block
repositories {
 jcenter() 
}
...
vi116-PearlAuthor
16-Pearl
September 19, 2019

Hi,

 

Thank you for information.

 

May I know which file I have to update ?

 

Regards,

Latha

posipova20-TurquoiseAnswer
20-Turquoise
September 19, 2019

I apologize, I misread your question. Since the problem is with the Eclipse marketplace - you may need to reach out to their support/forums as it's not a PTC product.