簡體   English   中英

無法在Eclipse中構建Gradle項目?

[英]Unable to build gradle project in eclipse?

清理后,當我嘗試構建gradle時,控制台出現錯誤:

包org.json不存在import org.json.JSONObject;

找不到符號symbol:類JSONObject

在jsonobject和json數組存在的所有位置的java文件中都有紅色標記。

我將文件夾web inf / lib放到了我創建的src / main / webapp目錄中,其中包含所有jar文件。

當前,我的build.gradle文件的內容是:

/*
 * This build file was auto generated by running the Gradle 'init' task
 * by 'i2cdev001' at '14/11/18 3:11 PM' with Gradle 2.14.1
 *
 * This generated file contains a sample Java project to get you started.
 * For more details take a look at the Java Quickstart chapter in the Gradle
 * user guide available at https://docs.gradle.org/2.14.1/userguide/tutorial_java_projects.html
 */

// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'war'

// In this section you declare where to find the dependencies of your project
repositories {
    // Use 'jcenter' for resolving your dependencies.
    // You can declare any Maven/Ivy/file repository here.
    jcenter()
}

// In this section you declare the dependencies for your production and test code
dependencies {
    // The production code uses the SLF4J logging API at compile time
    compile 'org.slf4j:slf4j-api:1.7.21'

    // Declare the dependency for your favourite test framework you want to use in your tests.
    // TestNG is also supported by the Gradle Test task. Just change the
    // testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
    // 'test.useTestNG()' to your build script.
    testCompile 'junit:junit:4.12'
}

注意:同樣在項目屬性中,我無法在Java構建路徑選項卡的Web App庫下看到任何jar文件。 我只能看到訪問規則:未定義規則和本機庫位置:(無)

由於您的項目是gradle項目,因此手動添加jar無效。.您必須提及將所有jar文件保存在build.gradle文件中的路徑。

在flatDir {}下的存儲庫中提及您的jar文件路徑:

repositories {
  jcenter()
  flatDir {
   dirs 'libs'
  }
}

然后,您必須從上面提到的文件夾中添加哪個罐子(即libs)

dependencies {
  compile 'gson-0.1.0'
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM