blob: 025468031c93dc550cb1f90b1a409af4a26721cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Setup IntelliJ for Bazel development using the IntelliJ Bazel Plugin.
# See https://github.com/bazelbuild/intellij for installation instructions.
directories:
src/main
src/test
test_sources:
src/test/*
targets:
//src:bazel
//src/test/...
# TODO: Remove this once Bazel can use Java 8.
java_language_level: 7
|