Skip to content

Commit 7aaba49

Browse files
pmalmstenJLLeitschuh
authored andcommitted
Improve IntelliJ indexing of additional Maven repositories (#591)
IntelliJ has trouble discovering maven repositories nested within other types of dependency blocks. This is fixed by moving them outside of the 'flatDir' block.
1 parent dc52336 commit 7aaba49

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ project(":core") {
168168
repositories {
169169
flatDir {
170170
dirs 'libs'
171-
maven {
172-
url = "http://first.wpi.edu/FRC/roborio/maven/development"
173-
}
174-
maven {
175-
url = "https://github.com/WPIRoboticsProjects/rosjava_mvn_repo/raw/master"
176-
}
171+
}
172+
maven {
173+
url = "http://first.wpi.edu/FRC/roborio/maven/development"
174+
}
175+
maven {
176+
url = "https://github.com/WPIRoboticsProjects/rosjava_mvn_repo/raw/master"
177177
}
178178
}
179179

0 commit comments

Comments
 (0)