标签: java gradle build.gradle gradlew
我依赖于apache commons lang jar。在Compile中我添加了以下内容,现在编译成功,但在运行时,我得到classNoFound异常
compile( 'org.apache.commons:commons-lang3:3.1.0', )
如果我没有指定上述内容,即使编译失败也是如此。现在只有运行时我才会收到错误。请帮忙。
据我所知,如果指定编译,它也会在运行时可见。 请帮忙。