Closed yolier closed 4 years ago
I realized that the hibernate-validator
is explicitly excluded from the org.vaadin.spring.extensions
dependency. If I remove the exclude the application starts properly as well.
Did the dependency cause problems in the past?
<dependency>
<groupId>org.vaadin.spring.extensions</groupId>
<artifactId>vaadin-spring-ext-boot</artifactId>
<version>2.0.0.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</exclusion>
</exclusions>
</dependency>
We thought that hibernate-validator would be GPL-licensed and excluded it for that reason. We than ran into the trouble that you saw and figured out that it is licensed under Apache License 2.0. We therefore added it again and merged the change. The respective commit is not in the master branch, though. I'll check why that is the case.
Thanks for your feedback!
Thanks again for pointing this out, @YoLieR !
Hi,
I currently get the following error when I build and run the KUKSA-AppStore:
I checked out the repo and build the appstore using
mvn clean install
. The error occurs when i start the app withjava -jar target/kuksa.appstore-0.0.1-SNAPSHOT.jar
I could fix the issue by adding the following dependency:
Should this dependency be added? Or am I starting the app wrong etc?.
Thanks for your help!