반응형
mavenExecutionResult exceptions not empty org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.5.1:dex (default-dex) on project calc-editor-apk: Execution default-dex of goal com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.5.1:dex failed: Could not find tool 'dx.jar'. Please provide a proper Android SDK directory path as configuration parameter <sdk><path>...</path></sdk> in the plugin <configuration/>. As an alternative, you may add the parameter to commandline: -Dandroid.sdk.path=... or set environment variable ANDROID_HOME.
sdk가 업데이트 되면서 sdk 폴더 구조가 변경이 되었는데 maven에서는 예전 경로를 찾을려 하기 때문에 오류가 발생합니다.
platform-tools 위치에
build-tools\android-4.4/lib 를 복사하여 dx.jar를 넣어 주고 빌드하면 오류가 해결된다.
반응형
'프로그램 > Maven' 카테고리의 다른 글
maven dependency library output (0) | 2014.04.19 |
---|---|
Could not find tool aapt. Please provide proper Android SDK directory path as configuration parameter (1) | 2013.09.09 |