Gradle找不到方法编译

时间:2019-07-29 21:55:28

标签: java gradle imagej

我正在尝试第一次使用gradle。我想要做的是将ImageJ与gradle一起使用。我从imageJ网站上获取了示例文件,并从imageJ github上的示例中获取了Java代码。 Gradle说找不到为imageJ编译的方法。

gradle.build中的代码如下:

buildscript {
    repositories {
        maven {
        url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
//        classpath "io.spring.gradle:dependency-management-plugin:0.5.4.RELEASE"
        classpath "io.spring.gradle:dependency-management-plugin:1.0.8.RELEASE"
    }
}
apply plugin: "io.spring.dependency-management"

repositories {
    jcenter()
    maven {
          url "http://maven.imagej.net/content/groups/public/"
    }
}
dependencyManagement {
    imports {
        mavenBom 'net.imagej:pom-imagej:14.1.0'
    }
}

dependencies {
    compile 'net.imagej:imagej'
}

java代码包含在src / main / java中,如下所示:

package test;

import java.io.File;

import net.imagej.Dataset;
import net.imagej.ImageJ;

/** Loads and displays a dataset using the ImageJ API. */
public class LoadAndDisplayDataset {

    public static void main(final String... args) throws Exception {
        // create the ImageJ application context with all available services
        final ImageJ ij = new ImageJ();

        // ask the user for a file to open
        final File file = ij.ui().chooseFile(null, "open");

        // load the dataset
        final Dataset dataset = ij.scifio().datasetIO().open(file.getPath());

        // display the dataset
        ij.ui().show(dataset);
    }

}

运行gradle build时,出现以下错误:Could not find method compile() for arguments [net.imagej:imagej

1 个答案:

答案 0 :(得分:0)

您知道吗, widget.parent.openTheDrawer(); compile,通常是由插件引入的;最有可能是Java插件。将Java插件添加到构建脚本的顶部即可达到目的:

configuration

因此,您的构建脚本如下所示:

apply plugin: 'java'