Language/Java

Maven Project를 Gradle 프로젝트로 변경하기

아르비스 2022. 2. 7. 10:11

Maven 프로젝트를 Gradle로 변경해봤다.

멈저 PC에 cmd 창에서 gradle 명령어를 사용할 수 있도록 환경 변수를 편집해보자.
우선 시스템 환경변수에서 시스템 변수 편집에 들어가 Path를 수정하여 gradle\bin의 위치를 설정해준다.

정상적으로 환경변수가 설정이 되면 cmd 창을 키고 gradle -v 명령어를 사용하면 다음과 같이 gradle 버전정보가 출력된다

 

PS C:\Users\sncap> gradle -v

------------------------------------------------------------
Gradle 7.1.1
------------------------------------------------------------

Build time:   2021-07-02 12:16:43 UTC
Revision:     774525a055494e0ece39f522ac7ad17498ce032c

Kotlin:       1.4.31
Groovy:       3.0.7
Ant:          Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM:          13.0.8 (Azul Systems, Inc. 13.0.8+5-MTS)
OS:           Windows 10 10.0 amd64

PS C:\Users\sncap>

 

그리고 maven 프로젝트 디렉토리에서 pom.xml이 존재하는 위치로 이동하여 다음 명령어를 사용하면 자동으로 build.gradle이 생성되면서 gradle 설정파일이 추가된다.

gradle init --type pom

 

 

실행 예시

PS D:\git\DataApiSvc\backend> gradle init --type pom

Select build script DSL:
  1: Groovy
  2: Kotlin
Enter selection (default: Groovy) [1..2] 1


> Task :init
Maven to Gradle conversion is an incubating feature.
Get more help with your project: https://docs.gradle.org/7.1.1/userguide/migrating_from_maven.html

BUILD SUCCESSFUL in 57s
2 actionable tasks: 2 executed
PS D:\git\DataApiSvc\backend>