참고글


이클립스로 그레이들 프로젝트 만들기
이클립스에서 그레이들 프로젝트를 만들기 위해서는 그레이들 플러그인이 설치되어 있어야 합니다.
그레이들 플러그인이 설치되지 않은 경우 참고글 링크를 통해 그레이들 플러그인을 설치해 주시기 바랍니다.

File -> New -> Other...



Gradle -> Gradle Project



그레이들 프로젝트 최초 생성시에는 다음과 같이 나오는데 체크 해제 후 Next

 


Next 


Next

 

 

 

Finish



다음과 같이 기본적인 프로젝트가 생성됩니다.
만약 기존에 생성된 java 프로젝트가 존재한다면 프로젝트에 build.gradle 파일을 생성하여 사용해도 됩니다.





build.gradle 파일에도 다음과 같이 기본적인 빌드 스크립트만 들어가 있습니다.
/*
 * This build file was generated by the Gradle 'init' task.
 *
 * This generated file contains a sample Java Library project to get you started.
 * For more details take a look at the Java Libraries chapter in the Gradle
 * user guide available at https://docs.gradle.org/4.3/userguide/java_library_plugin.html
 */
// Apply the java-library plugin to add support for Java Library
apply plugin: 'java-library'
// In this section you declare where to find the dependencies of your project
repositories {
    // Use jcenter for resolving your dependencies.
    // You can declare any Maven/Ivy/file repository here.
    jcenter()
}
dependencies {
    // This dependency is exported to consumers, that is to say found on their compile classpath.
    // This dependency is used internally, and not exposed to consumers on their own compile classpath.
    implementation 'com.google.guava:guava:23.0'
    // Use JUnit test framework
    testImplementation 'junit:junit:4.12'
}

 

 


 


그레이들 테스트 진행
유닛 테스트 클래스를 마우스 우클릭 후 Run As -> Gradle Test 를 클릭하면 테스트가 진행됩니다.





그레이들 태스크 수행
그레이들 플러그인을 설치하면 하단에 Gradle Tasks 뷰가 생성되는데 여기서 원하는 테스크를 더블클릭 하시면 됩니다.



혹은 프로젝트 우클릭 Run As -> Run Configurations... 를 눌러줍니다.



Gradle Project 우클릭 -> New



앞으로 사용할 태스크 이름을 지정해주고 Gradle Tasks 부분에 원하는 태스크를 입력하여 Run 해줍니다.


블로그 이미지

도로락

IT, 프로그래밍, 컴퓨터 활용 정보 등을 위한 블로그

,