사용자 도구

사이트 도구


gradle:idea

문서의 이전 판입니다!


Gradle IntelliJ IDEA

Example

apply plugin: 'idea'
 
idea {
  project {
    //if you want to set specific jdk and language level
    jdkName = '1.6'
    languageLevel = '1.5'
 
    //you can update the source wildcards
    wildcards += '!?*.ruby'
 
    //you can change the modules of the the *.ipr
    //modules = project(':someProject').idea.module
 
    //you can change the output file
    outputFile = new File(outputFile.parentFile, 'someBetterName.ipr')
 
    //you can add project-level libraries
    projectLibraries << new ProjectLibrary(name: "my-library", classes: [new Path("path/to/library")])
  }
}
gradle/idea.1392213633.txt.gz · 마지막으로 수정됨: 2014/02/12 23:00 저자 kwon37xi