2

上記のファイルを含む util-java.jar という名前の jar をビルド .gradle ファイルに追加しました。コンパイル時にエラーはありません。しかし、プロジェクトを実行すると、NoClassDefFoundError.

この問題を解消する方法を教えてください。私のbuild.gradleは次のとおりです:-

dependencies {
    compile group: "biz.aQute.bnd", name: "biz.aQute.bndlib", version: "3.1.0"
    compile group: "com.liferay", name: "com.liferay.osgi.util", version: "3.0.0"
    compile group: "com.liferay", name: "com.liferay.portal.spring.extender", version: "2.0.0"
    compile group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.6.0"
    compile project(":modules:customuser:customuser-api")

    compile group: 'com.liferay.portal', name: 'portal-kernel', version: '5.2.3'
    runtime group: 'com.liferay.portal', name: 'portal-kernel', version: '5.2.3'



    compile group: 'com.liferay.portal', name: 'util-java', version: '6.2.4'
    runtime group: 'com.liferay.portal', name: 'util-java', version: '6.2.4'
}
4

2 に答える 2