Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vaadin 8 Charts 4.3.1 has dependency conflict with Jackson #98

Open
TatuLund opened this issue Oct 1, 2023 · 1 comment
Open

Vaadin 8 Charts 4.3.1 has dependency conflict with Jackson #98

TatuLund opened this issue Oct 1, 2023 · 1 comment

Comments

@TatuLund
Copy link

TatuLund commented Oct 1, 2023

AppSecKit uses newer version of Jackson than Charts does. Application having both dependencies wont start unless there is exclusion made.

		<dependency>
   			<groupId>com.vaadin</groupId>
   			<artifactId>vaadin-charts</artifactId>
   			<version>4.3.1</version>
   			<exclusions>
				<exclusion>
					<groupId>com.fasterxml.jackson.core</groupId>
					<artifactId>jackson-databind</artifactId>	
				</exclusion>
			</exclusions>
		</dependency>
@TatuLund
Copy link
Author

TatuLund commented Feb 26, 2024

Jackson dependency has been updated in Vaadin Charts v4.3.3 to 2.16.1, which is newer than in AppSecKit, so it is now more appropriate to do the exclusion in appsec-kit

		<dependency>
			<groupId>com.vaadin</groupId>
			<artifactId>appsec-kit-v8</artifactId>
			<version>1.0.5</version>
			<exclusions>
				<exclusion>
					<groupId>com.fasterxml.jackson.core</groupId>
					<artifactId>jackson-databind</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

But this is not working. So one is forced to use 2.14.3 instead due it is the dependency in appsec-kit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant