Maven: cvc-complex-type.2.4.a: обнаружен недопустимый контент, начиная с элемента 'plugin' - PullRequest
0 голосов
/ 01 декабря 2018

Я не так хорош с конфигурацией Maven pom.xml.

Я пытаюсь настроить проект Eclipse для совместной работы с Java и Kotlin, например, для Corda (Blockchain) Bootcamp, но яУ меня сообщение об ошибке ниже:

cvc-complex-type.2.4.a: Invalid content was found starting with element 'plugin'. 
One of '{
    "http://maven.apache.org/POM/4.0.0":parent, 
    "http://maven.apache.org/POM/4.0.0":packaging, 
    "http://maven.apache.org/POM/4.0.0":name, 
    "http://maven.apache.org/POM/4.0.0":description, 
    "http://maven.apache.org/POM/4.0.0":url, 
    "http://maven.apache.org/POM/4.0.0":prerequisites, 
    "http://maven.apache.org/POM/4.0.0":issueManagement, 
    "http://maven.apache.org/POM/4.0.0":ciManagement, 
    "http://maven.apache.org/POM/4.0.0":inceptionYear, 
    "http://maven.apache.org/POM/4.0.0":mailingLists, 
    "http://maven.apache.org/POM/4.0.0":developers, 
    "http://maven.apache.org/POM/4.0.0":contributors, 
    "http://maven.apache.org/POM/4.0.0":licenses, 
    "http://maven.apache.org/POM/4.0.0":scm, 
    "http://maven.apache.org/POM/4.0.0":organization, 
    "http://maven.apache.org/POM/4.0.0":profiles, 
    "http://maven.apache.org/POM/4.0.0":modules, 
    "http://maven.apache.org/POM/4.0.0":repositories, 
    "http://maven.apache.org/POM/4.0.0":pluginRepositories, 
    "http://maven.apache.org/POM/4.0.0":dependencies, 
    "http://maven.apache.org/POM/4.0.0":reports, 
    "http://maven.apache.org/POM/4.0.0":reporting, 
    "http://maven.apache.org/POM/4.0.0":dependencyManagement, 
    "http://maven.apache.org/POM/4.0.0":distributionManagement
}' is expected.

Вот весь контент pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>r3</groupId>
    <artifactId>CordaAppBootCamp</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <java.version>1.8</java.version>
        <kotlin.version>1.2.51</kotlin.version>
    </properties>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                    <configuration>
                        <source>${java.version}</source>
                        <target>${java.version}</target>
                    </configuration>
                </plugin>

                <plugin>
                    <groupId>org.jetbrains.kotlin</groupId>
                    <artifactId>kotlin-maven-plugin</artifactId>
                    <version>${kotlin.version}</version>
                    <executions>
                        <execution>
                            <id>default-compile</id>
                            <phase>none</phase>
                        </execution>
                        <execution>
                            <id>default-testCompile</id>
                            <phase>none</phase>
                        </execution>
                        <execution>
                            <id>java-compile</id>
                            <phase>compile</phase>
                            <goals>
                                <goal>compile</goal>
                            </goals>
                        </execution>
                        <execution>
                            <id>java-test-compile</id>
                            <phase>test-compile</phase>
                            <goals>
                                <goal>testCompile</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-stdlib-jdk8</artifactId>
            <version>${kotlin.version}</version>
        </dependency>
    </dependencies>

</project>

Что я делаю не так?

Я сделал этоСпособ основан на этом посте Baeldung:

https://www.baeldung.com/kotlin-maven-java-project

У него было еще больше сообщений о проблемах.Некоторые из них я решил с помощью тега <pluginManagement>

...