testmycode / tmc-intellij

*BETA* TestMyCode plugin for IntelliJ IDEA
MIT License
24 stars 13 forks source link

Travis is broken because link points to old resource #107

Closed cxcorp closed 7 years ago

cxcorp commented 7 years ago

From prepare_build.sh:

mkdir -p target/dependency/intellij-idea
curl -L http://download.jetbrains.com/idea/ideaIC-2016.2.tar.gz | tar xz --strip-components=1 -C target/dependency/intellij-idea

The link used is dead. This article suggests that the following link could work instead:

https://download.jetbrains.com/idea/ideaIU-2016.2.5.tar.gz

nygrenh commented 7 years ago

Good catch! Do you want to create a pull request?

cxcorp commented 7 years ago

Honestly I have no idea if this would fix the build :smile:

I had to add a bunch of imports to fix the "missing symbols" errors and get the plugin compile on IDEA 2016.3, so I reckon that would be the proper solution. Perhaps the tar.gz could be changed to point to the latest, 2016.3 version (if that is even available)?

nygrenh commented 7 years ago

Yes, it should be changed to point to 2016.3.

cxcorp commented 7 years ago

PR #108 fixes the travis build.