표준프레임워크 Sample 프로젝트를 Gradle로 빌드환경 전환

빌드 환경 전환

  1. Eclipse Gradle Plugin 설치
  2. Sample 프로젝트 생성
    • 개발환경 > eGovFrame > New Web Project > [프로젝트 정보 입력-Next] > Generate Example 체크 [Finish] (또는)
    • 개발환경 > file > New > eGovfroame Web Project > [프로젝트 정보 입력-Next] > Generate Example 체크 [Finish]
      생성 프로젝트 선택
      프로젝트 정보 입력 게시판 컨텐츠 자동생성 체크
      메이븐 프로젝트 속성 확인
  3. build.gradle 파일 추가
  4. 기존 Maven Nature 삭제
    • Mavne > Disable Maven Nature
      Maven Nature 삭제 Compile 오류
  5. Gradle Nature 추가
    • Configure > Add Gradle Nature
      Gradle Nature 추가 Compile 오류 정리
  6. pom.xml 삭제
  7. Gradle 설정 확인
    • Gradle > Refresh Gradle Project
      Task 재구성
  8. Gradle Tasks View 열기
    • Window > Show View > Gradle > Gradle Tasks

  9. Gradle Tasks View에 표시된 프로젝트 Build
    • 프로젝트에 구성된 Task를 시작메뉴를 이용하여 빌드실행
      기본 Task 실행
      Task 실행결과
  10. Gradle 프로젝트 실행
    • Run As > Run On Server

build.gradle 파일

apply plugin: 'java'
apply plugin: 'war'
 
// JDK version source compatibility
sourceCompatibility = 1.7
 
// project version
version = '1.0'
 
// War file name
war.baseName = 'sample'
 
// Web directory, this overrides the default value "webapp"
project.webAppDirName = 'src/main/webapp'
project.buildDir = 'target'
 
 
// Set repository
repositories {
    mavenCentral()
    maven { url "http://www.egovframe.go.kr/maven/" }
}
 
// Set source directory
sourceSets {
        main {
            java {
                srcDir 'src/main/java'
                srcDir 'src/test/java'
            }
	        resources {
	            srcDir 'src/main/resources'
	            srcDir 'src/test/resources'
	        }
        }
    }
 
// dependencies to run on tomcat, are mandatory for tomcat plugin
dependencies {
    compile(group: 'egovframework.rte', name: 'egovframework.rte.ptl.mvc', version:'3.5.0') {
exclude(module: 'commons-logging')
    }
    compile group: 'egovframework.rte', name: 'egovframework.rte.psl.dataaccess', version:'3.5.0'
    compile group: 'egovframework.rte', name: 'egovframework.rte.fdl.idgnr', version:'3.5.0'
    compile group: 'egovframework.rte', name: 'egovframework.rte.fdl.property', version:'3.5.0'
    compile group: 'javax.servlet', name: 'jstl', version:'1.2'
    compile group: 'taglibs', name: 'standard', version:'1.1.2'
    compile group: 'org.antlr', name: 'antlr', version:'3.5'
    compile group: 'org.hsqldb', name: 'hsqldb', version:'2.3.2'
    providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
}
 
egovframework/dev3.6/dep/build_tool/togradle.txt · 마지막 수정: 2023/12/21 05:21 (외부 편집기)
 
이 위키의 내용은 다음의 라이센스에 따릅니다 :CC Attribution-Noncommercial-Share Alike 3.0 Unported
전자정부 표준프레임워크 라이센스(바로가기)

전자정부 표준프레임워크 활용의 안정성 보장을 위해 위험성을 지속적으로 모니터링하고 있으나, 오픈소스의 특성상 문제가 발생할 수 있습니다.
전자정부 표준프레임워크는 Apache 2.0 라이선스를 따르고 있는 오픈소스 프로그램입니다. Apache 2.0 라이선스에 따라 표준프레임워크를 활용하여 발생된 업무중단, 컴퓨터 고장 또는 오동작으로 인한 손해 등에 대해서 책임이 없습니다.
Recent changes RSS feed CC Attribution-Noncommercial-Share Alike 3.0 Unported Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki