Cucumber Junit Selenide with spring parallel tests - spring-boot

can somebody help with this problem? i have cucumber junit with selenide and spring boot, and i want to execute my tests in parallel, but it does not work. my pom file is this and may i have some problem here?
` <parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>ge.smartsource</groupId>
<artifactId>smart-source-java</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<java.version>17</java.version>
<selenium.version>4.2.1</selenium.version>
<webdrivermanager.version>5.2.0</webdrivermanager.version>
<testng.version>7.6.0</testng.version>
<aspectj.version>1.9.7</aspectj.version>
<allure.version>2.13.6</allure.version>
<cucumber.version>6.10.4</cucumber.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${webdrivermanager.version}</version>
</dependency>
<!-- cucumber users only -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-spring</artifactId>
<version>${cucumber.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-testng</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<!-- allure users only -->
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-cucumber-jvm</artifactId>
<version>${allure.version}</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-rest-assured</artifactId>
<version>${allure.version}</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-selenide</artifactId>
<version>${allure.version}</version>
</dependency>
<!-- testng users only -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>4.4.0</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-schema-validator</artifactId>
<version>4.4.0</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>selenide</artifactId>
<version>6.5.0</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
</dependency>
<dependency>
<groupId>com.browserup</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>com.codepine.api</groupId>
<artifactId>testrail-api-java-client</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-cucumber6-jvm</artifactId>
<version>${allure.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<parallel>all</parallel>
<threadCount>3</threadCount>
</configuration>
</plugin>
</plugins>
</build>`
also my junit runner class it this, may there need some additional information for run parallel tests
` #RunWith(Cucumber.class)
#CucumberContextConfiguration
#SpringBootTest(classes = {SpillenbodenApplication.class,
SpillRegistrationRegressionTest.class},
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
#CucumberOptions(
features = {"classpath:features"},
glue = {"com.example.spillenboden.pageSteps"},
tags = "#login",
plugin = {"pretty",
"html:target/cucumber-reports/cucumber.html",
"json:target/cucumber-reports/cucumber.json",
"io.qameta.allure.cucumber6jvm.AllureCucumber6Jvm"
}`

Related

Correct classpath of your application so that it contains compatible versions of the classes BootstrapApplicationListener and SpringApplicationBuilder

I am trying to upgrade my springboot application from. 1.5.22 to 2.7.0. I am not ale to upgrade because of few dependency mismamtches. I am using spring consul also and because of this may be the error. Here is some portion of my pom.xml:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.0</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<testutils.version>1.6.1</testutils.version>
<slf4j.version>1.7.25</slf4j.version>
<logstash-logback-encoder.version>4.11</logstash-logback-encoder.version>
<ch-qos-logback.version>1.2.11</ch-qos-logback.version>
<!-- Sonar Properties -->
<sonar.dynamicAnalysis>true</sonar.dynamicAnalysis>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.language>java</sonar.language>
<sonar.coverage.exclusions>**/*Config.*</sonar.coverage.exclusions>
<log4j2.version>2.17.2</log4j2.version>
<groovy.version>2.5.16</groovy.version>
<httpclient.version>4.5.13</httpclient.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
<gson.version>2.9.0</gson.version>
<jackson.version>2.13.2</jackson.version>
<snakeyaml.version>1.30</snakeyaml.version>
<gemfire.version>8.1.0</gemfire.version>
<hibernate.version>4.3.11.Final</hibernate.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-xml</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>com.cdk.credit</groupId>
<artifactId>credit-application-model</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.cdk.ds.credit</groupId>
<artifactId>dealer</artifactId>
<version>2.0.24</version>
</dependency>
<dependency>
<groupId>com.cdk.ds.credit</groupId>
<artifactId>transaction-entities</artifactId>
<version>1.3.8</version>
<exclusions>
<exclusion>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<groupId>org.hibernate.javax.persistence</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.cdk.ds.credit</groupId>
<artifactId>logging</artifactId>
<version>1.0.7</version>
<exclusions>
<exclusion>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<groupId>org.hibernate.javax.persistence</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.cdk.credit.memcache</groupId>
<artifactId>cdk-credit-memcache</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.security</groupId>
<artifactId>xml-security-impl</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901.jdbc4</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.junit-toolbox</groupId>
<artifactId>junit-toolbox</artifactId>
<version>1.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path-assert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-all</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>com.adp.ds.frontoffice.credit</groupId>
<artifactId>testutils</artifactId>
<version>${testutils.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${ch-qos-logback.version}</version>
</dependency>
<dependency>
<groupId>com.cdk.credit.security</groupId>
<artifactId>cdk-credit-security</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.cdk.credit.error.response</groupId>
<artifactId>cdk-credit-error-response</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.5.0-b01</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${ch-qos-logback.version}</version>
</dependency>
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>${logstash-logback-encoder.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
<version>2.6.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.6.1</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.3</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-consul-dependencies</artifactId>
<version>3.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.70</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.77.Final</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-crypto</artifactId>
<version>5.7.1</version>
</dependency>
</dependencies>
</dependencyManagement>
And below is the error:
APPLICATION FAILED TO START
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
org.springframework.cloud.bootstrap.BootstrapApplicationListener.bootstrapServiceContext(BootstrapApplicationListener.java:120)
The following method did not exist:
org.springframework.boot.builder.SpringApplicationBuilder.<init>([Ljava/lang/Object;)V
The calling method's class, org.springframework.cloud.bootstrap.BootstrapApplicationListener, was loaded from the following location:
jar:file:/Users/patangav/.m2/repository/org/springframework/cloud/spring-cloud-context/1.1.0.RELEASE/spring-cloud-context-1.1.0.RELEASE.jar!/org/springframework/cloud/bootstrap/BootstrapApplicationListener.class
The called method's class, org.springframework.boot.builder.SpringApplicationBuilder, is available from the following locations:
jar:file:/Users/patangav/.m2/repository/org/springframework/boot/spring-boot/2.7.0/spring-boot-2.7.0.jar!/org/springframework/boot/builder/SpringApplicationBuilder.class
The called method's class hierarchy was loaded from the following locations:
org.springframework.boot.builder.SpringApplicationBuilder: file:/Users/patangav/.m2/repository/org/springframework/boot/spring-boot/2.7.0/spring-boot-2.7.0.jar
Action:
Correct the classpath of your application so that it contains compatible versions of the classes org.springframework.cloud.bootstrap.BootstrapApplicationListener and org.springframework.boot.builder.SpringApplicationBuilder
The error says :
The calling method's class, org.springframework.cloud.bootstrap.BootstrapApplicationListener, was loaded from the following location:
jar:file:/Users/patangav/.m2/repository/org/springframework/cloud/spring-cloud-context/1.1.0.RELEASE/spring-cloud-context-1.1.0.RELEASE.jar!/org/springframework/cloud/bootstrap/BootstrapApplicationListener.class
=> spring-cloud-context/1.1.0.RELEASE
Your pom.xml references :
<artifactId>spring-cloud-consul-dependencies</artifactId>
<version>3.1.1</version>
So you should be using the latest spring-cloud-context version :
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-context
Your pom.xml looks consistent.
Try to clean / rebuild, delete IDE cache if possible.
If the error still occurs, use the mvn dependency:tree command to find out why you are still using a 1.1.0 version of the spring-cloud-context library.

nested exception java.lang.NoSuchMethodError: boolean io.netty.handler.ssl.SslProvider.isAlpnSupported(io.netty.handler.ssl.SslProvider)

Getting Following error for implementing formrecognizer java SDK in spring boot
" Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: 'boolean io.netty.handler.ssl.SslProvider.isAlpnSupported(io.netty.handler.ssl.SslProvider)'"
project POM.xml as follows
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.digidocq</groupId>
<artifactId>digidocq</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>digidocq</name>
<description>Demo project for digiDocQ</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<relativePath /> <!-- lookup parent from reposictory -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<reactor.version>2.5.0.BUILD-SNAPSHOT</reactor.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>1.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>8.4.0</version>
<exclusions>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.4.6</version>
<exclusions>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-formrecognizer</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.netty/netty5-handler -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.29.Final</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.1.29.Final</version>
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
<version>1.11.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
It fails for below line
"SyncPoller<FormRecognizerOperationResult, CustomFormModel> trainingPoller = trainingClient
.beginTraining(trainingDataUrl, false);"
Please suggest the solution

Maven GWT Plugin : CreateProcess error=206, The filename or extension is too long

I created a simple Project with default archtype with this command :
mvn -B archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.5.1 -DgroupId=org.dpdouran.web -DartifactId=WebERP -Dversion=1.0-SNAPSHOT -Dmodule=WebERP
then I added my artifactory repository address and some dependencies to the POM. no other things I changed.
The problem is before adding dependencies when I run mvn clean package it gives me a working war but after adding dependencies I get this error :
[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.5.1:i18n (default) on project WebERP: Failed to execute command line :
[ERROR] [-Xmx512m, -classpath, C:\Users\localUser\hbl\t1\WebERP\src\main\java;C:\Users\localUser\hbl\t1\WebERP\src\main\resources;
...
C:\Users\localUser\.m2\repository\org\dpdouran\support\support\94049\support-94049.jar;C:\Users\localUser\.m2\repository\com\google\gwt\gwt-user\2.5.1\gwt-user-2.5.1.jar;C:\Users\localUser\.m2\repository\com\google\gwt\gwt-dev\2.5.1\gwt-dev-2.5.1.jar, com.google.gwt.i18n.tools.I18NSync, -out, C:\Users\localUser\hbl\t1\WebERP\target\generated-sources\gwt, -createMessages, org.dpdouran.web.client.Messages]: Error while executing process. Cannot run program "C:\Program Files\Java\jdk1.8.0_271\jre\bin\java": CreateProcess error=206,
The filename or extension is too long
Here is my POM :
<?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/maven-v4_0_0.xsd">
<!-- POM file generated with GWT webAppCreator -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.dpdouran.web</groupId>
<artifactId>WebERP</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>WebERP</name>
<distributionManagement>
<repository>
<id>DouranArtifacts</id>
<name>DouranArtifacts</name>
<url>http://192.168.100.243:8082/artifactory/DouranArtifacts/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>DouranArtifacts</id>
<name>DouranArtifacts</name>
<url>http://192.168.100.243:8082/artifactory/DouranArtifacts/</url>
</repository>
</repositories>
<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.5.1</gwtVersion>
<!-- GWT needs at least java 1.5 -->
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<scope>test</scope>
</dependency>
<!-- added by Habil-->
<dependency>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
<version>1.1</version>
</dependency>
...
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>joutlookbar_demo</artifactId>
<version>joutlookbar_demo</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>jpa</artifactId>
<version>jpa</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>jsqlparser</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lookandfeel</artifactId>
<version>55578</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-icu</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-kuromoji</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-morfologik</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-phonetic</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-smartcn</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-stempel</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-analyzers-uima</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-core</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-facet</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-queries</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>7.1.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>mail</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>microba</artifactId>
<version>0.4.1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>mondrian</artifactId>
<version>3.1.1.12687</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>morena</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>morena_license</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>morena_windows</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>morfologik-ukrainian-search</artifactId>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>mysql-connector</artifactId>
<version>5.1.14</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>oa</artifactId>
<version>86329</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>ofcgwt</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>ojdbc</artifactId>
<version>8</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>orai18n</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>outlook</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>production</artifactId>
<version>67435</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>proguard</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>requestfactory-apt</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>requestfactory-client</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>requestfactory-server</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>rex</artifactId>
<version>20070125</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>serializer</artifactId>
<version>2.7.1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>simplecaptcha</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>spring-beans</artifactId>
<version>2.5.5</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>spring-context</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>spring-core</artifactId>
<version>2.5.5</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>sqleonardo</artifactId>
<version>200703</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>sqljdbc</artifactId>
<version>42</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>swingx</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>toplink-essentials</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>toplink-essentials-agent</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>ucp</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>websocket-api</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>wmf2svg</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>4.4.1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>wordapi</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xercesImpl</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xml-apis</artifactId>
<version>1.3.04</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xmlgraphics-commons</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.dpdouran.thirdparty</groupId>
<artifactId>xmltools</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.financial</groupId>
<artifactId>accounting</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Attendanc</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Command</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Common</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Evaluation</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_PayRoll</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Personnel</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Pishnehadat</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Recruitment</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Refahi</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>HR_Training</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>WebHumanResource</artifactId>
<version>990719</version>
</dependency>
<dependency>
<groupId>org.dpdouran.hr</groupId>
<artifactId>organizationchart</artifactId>
<version>990814</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>ErpWebService</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>FileManager</artifactId>
<version>94381</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebAnalytic</artifactId>
<version>94324</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebCommon</artifactId>
<version>94387</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebDashboard</artifactId>
<version>89985</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebDav</artifactId>
<version>85722</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebFileManager</artifactId>
<version>94966</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebInfra</artifactId>
<version>94977</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>WebInfraMultiLang</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>cartable</artifactId>
<version>86854</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>coding</artifactId>
<version>61039</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>common</artifactId>
<version>94720</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>db</artifactId>
<version>56510</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>infra</artifactId>
<version>94935</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>reporting</artifactId>
<version>94158</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>webcartable</artifactId>
<version>92374</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>weboa</artifactId>
<version>93929</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>webskin</artifactId>
<version>94958</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>webworkflow</artifactId>
<version>86081</version>
</dependency>
<dependency>
<groupId>org.dpdouran.infra</groupId>
<artifactId>workflow</artifactId>
<version>94228</version>
</dependency>
<dependency>
<groupId>org.dpdouran.logistics</groupId>
<artifactId>realestate</artifactId>
<version>63853</version>
</dependency>
<dependency>
<groupId>org.dpdouran.logistics</groupId>
<artifactId>risk_management</artifactId>
<version>73541</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>NetworkCommon</artifactId>
<version>94261</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>NetworkGraph</artifactId>
<version>94286</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>NetworkMonitoringUI</artifactId>
<version>94299</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>NetworkUtil</artifactId>
<version>94543</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>NetworkWebService</artifactId>
<version>89589</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>WebNetworkDiscovery</artifactId>
<version>92079</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>WebNetworkMonitoring</artifactId>
<version>94597</version>
</dependency>
<dependency>
<groupId>org.dpdouran.monitoring</groupId>
<artifactId>WebStockChart</artifactId>
<version>94597</version>
</dependency>
<dependency>
<groupId>org.dpdouran.support</groupId>
<artifactId>WebSupport</artifactId>
<version>92325</version>
</dependency>
<dependency>
<groupId>org.dpdouran.support</groupId>
<artifactId>projectmanagement</artifactId>
<version>93256</version>
</dependency>
<dependency>
<groupId>org.dpdouran.support</groupId>
<artifactId>support</artifactId>
<version>94049</version>
</dependency>
</dependencies>
<build>
<!-- Generate compiled stuff in the folder used for developing mode -->
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
<plugins>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>i18n</goal>
<goal>generateAsync</goal>
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see
gwt-maven-plugin documentation at codehaus.org -->
<configuration>
<runTarget>WebERP.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<i18nMessagesBundle>org.dpdouran.web.client.Messages</i18nMessagesBundle>
</configuration>
</plugin>
<!-- Copy static web files before executing gwt:run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
<configuration>
<webappDirectory>${webappDirectory}</webappDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
I Have to use GWT 2.5.1 and java 1.5.
The classpath argument for compiling the GWT component is too long for Windows shell to handle.
Most dependencies appear to be server-side components of the webapp, and really should not be present in the classpath when compiling the GWT client-side component of the webapp.
One solution is to split the webapp into 2 maven submodules, one for the client and one for the server. This approach is considered "best practice" in the GWT community, and is well supported by the TBroyer GWT maven plugin, which supersedes the Mojo GWT maven plugin that you are using. Refer to https://github.com/tbroyer/gwt-maven-plugin and for archetypes https://github.com/tbroyer/gwt-maven-archetypes

spring boot wont able to compaile jsp problem

I am using spring boot and front end jsp and jQuery and maven . the project working fine .but jsp page is not compile. can any one explain I missed any maven dependency in pom.xml.
I have configured Spring Boot using annotations.
I have the following files
1)AppStarter class for configuring spring boot
<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>
<artifactId>merchant</artifactId>
<packaging>war</packaging>
<name>merchant</name>
<version>1.0</version>
<groupId>com.merchantportal</groupId>
<url>http://maven.apache.org</url>
<properties>
<java.version>1.8</java.version>
<wildfly.timeout>30000</wildfly.timeout>
<wildfly.startupTimeout>30000</wildfly.startupTimeout>
<poi.version>4.1.2</poi.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!-- Http Client -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<!-- JSTL tag lib push test ll -->
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.18</version><!--$NO-MVN-MAN-VER$ -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<!-- <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId>
<scope>runtime</scope> </dependency> -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.10.4</version><!--$NO-MVN-MAN-VER$ -->
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<!-- <version>1.9</version> -->
</dependency>
<dependency>
<groupId>org.owasp.esapi</groupId>
<artifactId>esapi</artifactId>
<version>2.1.0.1</version>
</dependency>
<dependency>
<groupId>com.googlecode.ehcache-spring-annotations</groupId>
<artifactId>ehcache-spring-annotations</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Tomcat for JSP rendering -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<!-- jstl for jsp -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/xalan/xalan -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.axis/axis -->
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context-support -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>9.0.10</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.51</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpg-jdk15on -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk15on</artifactId>
<version>1.47</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.10</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Excel -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.18</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
<dependency>
<groupId>org.ajaxtags</groupId>
<artifactId>ajaxtags</artifactId>
<version>1.1.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.iban4j/iban4j -->
<dependency>
<groupId>org.iban4j</groupId>
<artifactId>iban4j</artifactId>
<version>3.0.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
</project>
2020-12-08 19:17:06.422 INFO 3332 --- [ restartedMain] c.v.merchantportal.config.MainApp : Started MainApp in 44.877 seconds (JVM running for 46.902)
org.springframework.boot.devtools.restart.SilentExitExceptionHandler$SilentExitException
at org.springframework.boot.devtools.restart.SilentExitExceptionHandler.exitCurrentThread(SilentExitExceptionHandler.java:90)
at org.springframework.boot.devtools.restart.Restarter.immediateRestart(Restarter.java:181)
at org.springframework.boot.devtools.restart.Restarter.initialize(Restarter.java:165)
at org.springframework.boot.devtools.restart.Restarter.initialize(Restarter.java:562)
at org.springframework.boot.devtools.restart.RestartApplicationListener.onApplicationStartingEvent(RestartApplicationListener.java:67)
at org.springframework.boot.devtools.restart.RestartApplicationListener.onApplicationEvent(RestartApplicationListener.java:45)
at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172)
at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165)
at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139)
at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:127)
at org.springframework.boot.context.event.EventPublishingRunListener.starting(EventPublishingRunListener.java:68)
at org.springframework.boot.SpringApplicationRunListeners.starting(SpringApplicationRunListeners.java:48)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:316)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1258)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1246)
at com.vTransact.merchantportal.config.MainApp.main(MainApp.java:49)
2020/12/08 19:17:06,443 ERROR {} || || line No :54 || :: Exception Occured:: org.springframework.boot.devtools.restart.SilentExitExceptionHandler$SilentExitException || || || ||
``

Spring MVC Maven Http Status 404

I am
getting error I can's solve fix about Http Status 404 Error report
Spring Frame Work Structure :My Eclipse IDE Project Frame work
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>org.springframework.samples</groupId>
<artifactId>ecs_kpi</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ecs_kpi</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency><groupId>activation
</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>ant_lr</groupId>
<artifactId>ant_lr</artifactId>
<version>2.7.6</version>
</dependency>
<dependency>
<groupId>asm_api</groupId>
<artifactId>asm_api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>aspect_jrt</groupId>
<artifactId>aspect_jrt</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>aspect_jweaver</groupId>
<artifactId>aspect_jweaver</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>cg_lib</groupId>
<artifactId>cg_lib</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>cg_lib-node_p</groupId>
<artifactId>cg_lib-node_p</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>com.ibm.icu_52.1.0</groupId>
<artifactId>com.ibm.icu_52.1.0</artifactId>
<version>v201404241930</version>
</dependency>
<dependency>
<groupId>com.lowagie.text_2.1.7</groupId>
<artifactId>com.lowagie.text_2.1.7</artifactId>
<version>v201004222200</version>
</dependency>
<dependency>
<groupId>com.springsource.javax.jms</groupId>
<artifactId>com.springsource.javax.jms</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.springsource.javax.portlet</groupId>
<artifactId>com.springsource.javax.portlet</artifactId>
<version>2.0.0.v20110525</version>
</dependency>
<dependency>
<groupId>com.springsource.javax.xml.stream</groupId>
<artifactId>com.springsource.javax.xml.stream</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.springsource.org.aopalliance</groupId>
<artifactId>com.springsource.org.aopalliance</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.springsource.org.apache.commons.logging</groupId>
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-bean_utils</groupId>
<artifactId>commons-bean_utils</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>commons-cl_i</groupId>
<artifactId>commons-cl_i</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>commons-code_c</groupId>
<artifactId>commons-code_c</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>commons-file_upload</groupId>
<artifactId>commons-file_upload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>commons-http_client</groupId>
<artifactId>commons-http_client</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-jexl</groupId>
<artifactId>commons-jexl</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>cos</groupId>
<artifactId>cos</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>druid</groupId>
<artifactId>druid</artifactId>
<version>0.2.4</version>
</dependency>
<dependency>
<groupId>ecskpi-developer</groupId>
<artifactId>ecskpi-developer</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>ezmorph</groupId>
<artifactId>ezmorph</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>hibernate-commons-annotations</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.2.0.Final</version>
</dependency>
<dependency>
<groupId>hibernate-core</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.1.Final</version>
</dependency>
<dependency>
<groupId>hibernate-entitymanager</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>hibernate-jpa-2.0-api</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<dependency>
<groupId>httpclient</groupId>
<artifactId>httpclient</artifactId>
<version>4.2</version>
</dependency>
<dependency>
<groupId>httpclient-cache</groupId>
<artifactId>httpclient-cache</artifactId>
<version>4.2.5</version>
</dependency>
<dependency>
<groupId>http_core</groupId>
<artifactId>http_core</artifactId>
<version>4.2.4</version>
</dependency>
<dependency>
<groupId>http_core</groupId>
<artifactId>http_core</artifactId>
<version>4.2</version>
</dependency>
<dependency>
<groupId>http_mime</groupId>
<artifactId>http_mime</artifactId>
<version>4.2.5</version>
</dependency>
<dependency>
<groupId>jackson_all</groupId>
<artifactId>jackson_all</artifactId>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>jakarta_oro</groupId>
<artifactId>jakarta_oro</artifactId>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>jav_assist</groupId>
<artifactId>jav_assist</artifactId>
<version>3.12.1.GA</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet</artifactId>
<version>3.0.0.v201103241009</version>
</dependency>
<dependency>
<groupId>jax_b-API</groupId>
<artifactId>jax_b-API</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jax_b-API</groupId>
<artifactId>jax_b-API</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>jax_b-implement</groupId>
<artifactId>jax_b-implement</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jax_b-x_jc</groupId>
<artifactId>jax_b-x_jc</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jax_en-1.1-beta</groupId>
<artifactId>jax_en-1.1-beta</artifactId>
<version>7</version>
</dependency>
<dependency>
<groupId>jax_rpc</groupId>
<artifactId>jax_rpc</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>j_cl-over-slf4j</groupId>
<artifactId>j_cl-over-slf4j</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>j_common</groupId>
<artifactId>j_common</artifactId>
<version>1.0.16</version>
</dependency>
<dependency>
<groupId>j_dom</groupId>
<artifactId>j_dom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>jet_tison</groupId>
<artifactId>jet_tison</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>jfree_chart</groupId>
<artifactId>jfree_chart</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jms</groupId>
<artifactId>jms</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>1.6</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>js</groupId>
<artifactId>js</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.1-jdk15</version>
</dependency>
<dependency>
<groupId>jsr250-api</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jta</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>jxcell</groupId>
<artifactId>jxcell</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jxl</groupId>
<artifactId>jxl</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jxls-core</groupId>
<artifactId>jxls-core</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>jxls-reader</groupId>
<artifactId>jxls-reader</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<exclusions>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.5</version>
</dependency>
<dependency>
<groupId>nocSms</groupId>
<artifactId>nocSms</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>ojdbc14</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.batik.css_1.6.0</groupId>
<artifactId>org.apache.batik.css_1.6.0</artifactId>
<version>v201011041432</version>
</dependency>
<dependency>
<groupId>org.apache.batik.util_1.6.0</groupId>
<artifactId>org.apache.batik.util_1.6.0</artifactId>
<version>v201011041432</version>
</dependency>
<dependency>
<groupId>org.apache.xerces_2.9.0</groupId>
<artifactId>org.apache.xerces_2.9.0</artifactId>
<version>v201101211617</version>
</dependency>
<dependency>
<groupId>org.eclipse.birt.runtime_4.4.0.v20140611</groupId>
<artifactId>org.eclipse.birt.runtime_4.4.0.v201406113</artifactId>
<version>1043</version>
</dependency>
<dependency>
<groupId>org.eclipse.core.runtime_3.10.0.v20140318</groupId>
<artifactId>org.eclipse.core.runtime_3.10.0.v20140318</artifactId>
<version>2214</version>
</dependency>
<dependency>
<groupId>org.eclipse.datatools.connectivity.oda.consumer_3.2.6</groupId>
<artifactId>org.eclipse.datatools.connectivity.oda.consumer_3.2.6</artifactId>
<version>v201403131814</version>
</dependency>
<dependency>
<groupId>org.eclipse.datatools.connectivity.oda_3.4.3</groupId>
<artifactId>org.eclipse.datatools.connectivity.oda_3.4.3</artifactId>
<version>v201405301249</version>
</dependency>
<dependency>
<groupId>org.eclipse.datatools.connectivity_1.2.11</groupId>
<artifactId>org.eclipse.datatools.connectivity_1.2.11</artifactId>
<version>v201401230755</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf.common_2.10.0.v20140514</groupId>
<artifactId>org.eclipse.emf.common_2.10.0.v20140514</artifactId>
<version>1158</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf.ecore.change_2.10.0.v20140514</groupId>
<artifactId>org.eclipse.emf.ecore.change_2.10.0.v20140514</artifactId>
<version>1158</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf.ecore.xmi_2.10.0.v20140514</groupId>
<artifactId>org.eclipse.emf.ecore.xmi_2.10.0.v20140514</artifactId>
<version>1158</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf.ecore_2.10.0.v20140514</groupId>
<artifactId>org.eclipse.emf.ecore_2.10.0.v20140514</artifactId>
<version>1158</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf_2.6.0.v20140519</groupId>
<artifactId>org.eclipse.emf_2.6.0.v20140519</artifactId>
<version>0339</version>
</dependency>
<dependency>
<groupId>org.eclipse.equinox.common_3.6.200.v20130402</groupId>
<artifactId>org.eclipse.equinox.common_3.6.200.v20130402</artifactId>
<version>1505</version>
</dependency>
<dependency>
<groupId>org.eclipse.equinox.registry_3.5.400.v20140428</groupId>
<artifactId>org.eclipse.equinox.registry_3.5.400.v20140428</artifactId>
<version>1507</version>
</dependency>
<dependency>
<groupId>org.eclipse.osgi_3.10.0.v20140606</groupId>
<artifactId>org.eclipse.osgi_3.10.0.v20140606</artifactId>
<version>1445</version>
</dependency>
<dependency>
<groupId>org.w3c.css.sac_1.3.0</groupId>
<artifactId>org.w3c.css.sac_1.3.0</artifactId>
<version>v200805290154</version>
</dependency>
<dependency>
<groupId>poi-3.7</groupId>
<artifactId>poi-3.7</artifactId>
<version>20101029</version>
</dependency>
<dependency>
<groupId>poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>poi-ooxml</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>quartz-all</groupId>
<artifactId>quartz-all</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>slf4j-api</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>slf4j-log4j12</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>spring-aop</groupId>
<artifactId>spring-aop</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-aspects</groupId>
<artifactId>spring-aspects</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-beans</groupId>
<artifactId>spring-beans</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-build-src</groupId>
<artifactId>spring-build-src</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-context</groupId>
<artifactId>spring-context</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-context-support</groupId>
<artifactId>spring-context-support</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-core</groupId>
<artifactId>spring-core</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-expression</groupId>
<artifactId>spring-expression</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-instrument</groupId>
<artifactId>spring-instrument</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-instrument-tomcat</groupId>
<artifactId>spring-instrument-tomcat</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-jdbc</groupId>
<artifactId>spring-jdbc</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-jms</groupId>
<artifactId>spring-jms</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-orm</groupId>
<artifactId>spring-orm</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-oxm</groupId>
<artifactId>spring-oxm</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-struts</groupId>
<artifactId>spring-struts</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-test</groupId>
<artifactId>spring-test</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-tx</groupId>
<artifactId>spring-tx</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-web</groupId>
<artifactId>spring-web</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-webmvc</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>spring-webmvc-portlet</groupId>
<artifactId>spring-webmvc-portlet</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>sqljdbc4</groupId>
<artifactId>sqljdbc4</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>standard</groupId>
<artifactId>standard</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>stax-api</groupId>
<artifactId>stax-api</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>Tidy</groupId>
<artifactId>Tidy</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>tiles-api</groupId>
<artifactId>tiles-api</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>tiles-core</groupId>
<artifactId>tiles-core</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>tiles-jsp</groupId>
<artifactId>tiles-jsp</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>tiles-servlet</groupId>
<artifactId>tiles-servlet</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>tiles-template</groupId>
<artifactId>tiles-template</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>viewservlets</groupId>
<artifactId>viewservlets</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>websendMsg</groupId>
<artifactId>websendMsg</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>wstx-asl</groupId>
<artifactId>wstx-asl</artifactId>
<version>3.2.7</version>
</dependency>
<dependency>
<groupId>XmlSchema</groupId>
<artifactId>XmlSchema</artifactId>
<version>1.4.7</version>
</dependency>
<dependency>
<groupId>xml-writer</groupId>
<artifactId>xml-writer</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>xpp3_min</groupId>
<artifactId>xpp3_min</artifactId>
<version>1.1.4c</version>
</dependency>
<dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>xstream-benchmark</groupId>
<artifactId>xstream-benchmark</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<!-- Generic properties -->
<java.version>1.7</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputDirectory>target/classes</project.build.outputDirectory>
<!-- Spring -->
<spring-framework.version>3.2.3.RELEASE</spring-framework.version>
<!-- Hibernate / JPA -->
<hibernate.version>4.2.1.Final</hibernate.version>
<!-- Logging -->
<logback.version>1.0.13</logback.version>
<slf4j.version>1.7.5</slf4j.version>
<!-- Test -->
<junit.version>4.11</junit.version>
</properties>
</project>
Web.XML : I addded welcome list tag but it seems same error showing ?
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>STS</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
Note : Actually I copied POM.xml file from other project source after
I clean and Installed Maven success status .Is it any made I mistaken
during maven installation ?
do you scan the package? I think you should create a simple project use spring mvc
.by the way I think you should build step by step .your pom.xml is too big .but it needn't so much.

Resources