2018-01-04'ü 1.5.9 ile güncelleyin.
Burada tam kod ve çalıştırılabilir örnek var https://www.surasint.com/spring-boot-with-no-parent-example/
Buna temel olarak ihtiyacınız var
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${springframework.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Ancak bu yeterli değildir, ayrıca spring-boot-maven-plugin için hedefi açıkça tanımlamanız gerekir (Spring Boot'u üst öğe olarak kullanırsanız, bunu açıkça tanımlamanız gerekmez)
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springframework.boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
Aksi takdirde yürütülebilir kavanoz veya savaş olarak inşa edemezsiniz.
Henüz değil, JSP kullanıyorsanız, aşağıdakilere sahip olmanız gerekir:
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Aksi takdirde, şu hata iletisini alırsınız:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project spring-boot-09: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executi
ng in update mode) -> [Help 1]
HAYIR HAYIR, "$ {}" yerine "@" ile Spring Boot ile Maven Profili ve Kaynak Filtresi kullanıyorsanız bu hala yeterli değildir (bu örnek gibi https://www.surasint.com/spring-boot-maven -kaynak-filtre / ). Sonra bunu açıkça
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
Ve bu da
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
Https://www.surasint.com/spring-boot-with-no-parent-example/ bağlantısındaki örneğe bakın .