pom.xml中有多个标签/预期令牌问题

时间:2017-08-29 20:45:33

标签: java xml maven

我在pom.xml文件中遇到问题。有谁知道我做错了什么?

<?xml version="1.0" encoding="UTF-8"?>
< 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>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.6.RELEASE</version>
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
        <junit.jupiter.version>5.0.0-M3</junit.jupiter.version>
        <junit.vintage.version>${junit.version}.0-M3</junit.vintage.version>
        <junit.platform.version>1.0.0-M3</junit.platform.version>
        <cucumber.version>1.2.5</cucumber.version>
        <mysql.connector.version>6.0.5</mysql.connector.version>
        <jooq.verson>3.9.1</jooq.verson>
    </properties>

    <plugin>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>

       <artifactId>maven-surefire-plugin</artifactId>
       <version>2.19.1</version>
       <configuration>
       <include>
       <include>**/Test*.java</include>
           <include>**/*Test.java</include>
           <include>**/*Tests.java</include>
           <include>**/*TestCase.java</include>
           <include>**/*Runner.java</include>
       </include>
       </configuration>

       <dependencies>
       <dependency>
           <groupId>org.junit.platform</groupId>
           <artifactId>junit-platform-surefire-provider</artifactId>
           <version>LATEST</version>
       </dependency>

           <dependency>
               <groupId>org.junit.jupiter</groupId>
               <artifactId>junit-jupiter-engine</artifactId>
               <version>LATEST</version>
           </dependency>
           <dependency>
               <groupId>org.junit.vintage</groupId>
               <artifactId>junit-vintage-engine</artifactId>
               <version>${junit.jupiter.version}</version>
           </dependency>
       </dependencies>
    </plugin>

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.liquidbase</groupId>
<artifactId>liduidbase</artifactId>
<version>3.0.5</version>
</plugin>

<configuration>

<driver>com.mysql.cj.jdbc.Driver</driver>
<url>jdbc:mysql://127.0.0.1:33306/monster_app?nullNamePatternMatchesAll=true</url>
<username>monster_user</username>
<password>monster_password</password>
<changeLogFile>src/main/java/com/example/changelog-master.xml</changeLogFile>
<promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
</configuration>
<executions>
<execution>
    <phase>process-resources</phase>
    <goals>
        <goal>update</goal>
    </goals>
</execution>
</executions>
        </plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<configuration>
<jdbc>
<driver>com.mysqk.cj.jdbc.Driver</driver>
    <url>jdbc:mysql://127.0.0.1:33306/monster_app?nullNamePatternMatchesAll=true</url>
    <username>monster_user</username>
    <password>monster_password</password>
</jdbc>
<generator>
    <name>org.jooq.util.JavaGenerator</name>
    <database>
    <name>org.jooq.util.mysql.MySQLDatabase</name>
   <inputSchema>monster_app</inputSchema>
    <includes>.*</includes>
    </database>

    <target>

     <packageName>com.example.Generated</packageName>
      <directory>src/main/java</directory>
    </target>
</generator>
</configuration>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
    <version>${junit.jupiter.version}</version>
    <scope>test</scope>

</dependency>

<dependency>
<groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>${junit.version}</version>
    <scope>test</scope>
</dependency>

</dependencies>

<repositories>
<repository>
 <id>sonatype-snapshots</id>
 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
 <snapshots>
     <enabled>true</enabled>
 </snapshots>
</repository>
</repositories>

<dependencies>

<dependency>
 <groupId>info.cukes</groupId>
 <artifactId>cucumber-junit</artifactId>
 <version>${cucumber.version}</version>
 <scope>test</scope>
</dependency>

<dependency>
 <groupId>info.cukes</groupId>
 <artifactId>cucumber-java8</artifactId>
 <version>${cucumber.version</version>
 <scope>test</scope>
</dependency>

<dependency>
 <groupId>info.cukes</groupId>
 <artifactId>cucumber-jvm</artifactId>
 <version>1.0.11</version>
 <type>pom</type>
</dependency>

<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-web</artifactId>
</dependency>


<dependency>
 <groupId>info.cukes</groupId>
 <artifactId>cucumber-spring</artifactId>
 <version>1.2.5</version>
 <scope>test</scope>
</dependency>

<dependency>
 <groupId>com.h2database</groupId>
 <artifactId>h2</artifactId>
 <scope>runtime</scope>
</dependency>

<dependency>
<groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>${mysql.connector.version}</version>
</dependency>


<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-test</artifactId>
 <scope>test</scope>
</dependency>

<dependency>
<groupId>org.jooq</groupId>
    <artifactId>jooq</artifactId>
    <version>${jooq.version}</version>
</dependency>

<dependency>
    <groupId>org.jooq</groupId>
    <artifactId>jooq-meta</artifactId>
<version>${jooq.version}</version>
</dependency>
<dependency>
<artifactId>org.jooq</artifactId>
    <groupId>jooq-codegen</groupId>
    <version>${jooq.version}</version>
</dependency>

<dependency>
<groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-mapper-asl</artifactId>
    <version>1.9.13</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>4.3.10.RELEASE</version>
    <scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-test</artifactId>
    <version>1.5.6.RELEASE</version>
    <scope>test</scope>
</dependency>


<dependency>
<groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
</dependency>

</dependencies>
</project>

我无法弄清楚到底出了什么问题。前3行给出了多个标签错误,最后一行给了我意想不到的令牌。

此代码已经在另一台人机上试用过,似乎工作正常。 我不认为我有什么奇怪的东西,但它仍然不适合我。

2 个答案:

答案 0 :(得分:2)

您只是错过了project代码名称。

<?xml version="1.0" encoding="UTF-8"?>
<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">

答案 1 :(得分:0)

你的pom.xml中出现了多个结构问题,让我列出下面几个:

  1. 第二行应该将项目作为标记,如下所示:

    http://maven.apache.org/xsd/maven-4.0.0.xsd">

  2. 应该驻留在标记内,并且所有标记都应该 然后驻留在标签内。

  3. 标签应位于特定标签内。
  4. 我建议您使用Eclipse之类的IDE,然后键入Ctrl + Space以显示每个标记的建议。这有助于您将标签移动到相关部分。此外,您应该将所有依赖项保留在该部分之上。