File: build.gradle

package info (click to toggle)
intellij-community-idea 183.5153.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 178,436 kB
  • sloc: java: 2,023,773; xml: 78,706; ansic: 2,742; cpp: 1,688; javascript: 1,657; objc: 1,316; sh: 724; perl: 221; ruby: 102; python: 87; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (3)
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
plugins {
    id 'java'
}

dependencies{
    compile project(":java:java-psi-api")
    compile project(":platform:core-impl")

    compile files("${project.rootDir}/debian/asm-all-debian.jar")
    compile("resolve.in.maven.rule:Guava:19010906")
    compile("resolve.in.maven.rule:StreamEx:19010906")
}

sourceSets{
    main{
        java.srcDirs=["src","gen"]
	resources {
        	srcDir 'src'
    	}
    }
    
}

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
version = '183.5153.4'