我需要 10 个 maven pom 文件

Vaadin 10 maven pom file

我试图从 Vaadin 8 迁移到 10,但在更新 pom 文件中的 vaadin-bom 版本时遇到问题。

上一个:

<properties>
   <vaadin.version>8.4.3</vaadin.version>
   <vaadin.plugin.version>8.4.3</vaadin.plugin.version>
</properties>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-bom</artifactId>
            <version>${vaadin.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
   <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-server</artifactId>
    </dependency>
    <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-push</artifactId>
    </dependency>
    <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-client-compiled</artifactId>
    </dependency>

    <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-themes</artifactId>
    </dependency>
 </dependencies>

将版本更新到 10.0.1 后,我已经收到所有依赖项的错误

Project build error: 'dependencies.dependency.version' for com.vaadin:vaadin-server:jar is missing.

我是否明确地为依赖项放置了一个版本(最新的仍然是 8++)?或者我应该在我的 pom 文件中更改任何步骤以使更新成功?

与以前的版本相比,Vaadin 10 的打包方式略有不同,这意味着存在不同的工件 ID 和不同的 Maven 插件(只有生产构建才需要)。不建议直接通过更改版本号和解决编译错误的方式进行更新。

您可以使用 https://vaadin.com/start 中的 "Project Base" 初学者之一找到工作基线 pom.xml 设置,然后在其上添加您自己的东西。