-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
* add test to find problem like #320 * close #320: iterate ClassesDirs to find all target files * install not only spotbugs but also others * move timing to install * use both of central and local as repository * update CHANGELOG * Revert "move timing to install" This reverts commit e997efb. * refs #337: extract shared logic to Before method * refs #337: add more tests * shorten test by deleting temporal File object in field * generate plugin classpath by gradle this change lets us stop invoking `install` task before the `test`. * Revert "generate plugin classpath by gradle" This reverts commit 9952aa6.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,8 @@ install: | |
- rm -rf eclipse | ||
- tar xzvf deps/eclipse-SDK-4.6.3-linux-gtk-x86_64.tar.gz eclipse | ||
- echo eclipseRoot.dir=$(pwd)/eclipse > eclipsePlugin/local.properties | ||
# To run gradlePlugin:test, we need to install spotbugs and its dependencies into local repository | ||
- ./gradlew install -x test | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ThrawnCA
Contributor
|
||
|
||
script: | ||
# Manually switch to JDK9 if needed | ||
|
1 comment
on commit f7a08d9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This commit breaks my build, complaining that it can't find com.github.spotbugs:spotbugs:3.1.0-SNAPSHOT in any repository. Rolling back to the previous commit fixes it.
@ThrawnCA you need to install spotbugs first, then you can run test in local.