ProGuard를 Maven 프로젝트에 적용할 때 유의할점

Developer Tools|2012. 5. 27. 15:15

'can’t find referenced class org.apache.commons.logging.Log'


proguard-maven-plugin 적용 시에 위와 같은 Warning 메시지가 나오면, 해당 클래스가 속한 라이브러리의 scope를 compile로 지정한 후 다시 시도해 본다.


<dependency>

    <groupId>org.slf4j</groupId>

    <artifactId>jcl-over-slf4j</artifactId>

    <version>1.6.1</version>

    <scope>compile</scope>

</dependency>


댓글()