-
Notifications
You must be signed in to change notification settings - Fork 0
/
javaconfig.json
36 lines (31 loc) · 951 Bytes
/
javaconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"projects": {
"/": {
// Metadata about the artifact if this project can be depended on by other projects
"artifactId": "dependency-test",
"groupId": "com.example",
"version": "0.0.1-SNAPSHOT",
// The source directories of this project
"sourceDirectories": ["src/main/java"],
// The test source directories of this project
"testSourceDirectories": ["src/test/java"],
// The Maven repositories from which to fetch dependencies
"repositories": [
{
"id": "central",
"url": "https://repo.maven.apache.org/maven2"
}
],
// Dependencies specified by their artifact metadata
"dependencies": [
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "24.1.1-jre"
}
],
// Additional options to pass to javac during compilation
"compilerOptions": []
}
}
}