vaadin - How to reference a maven dependency that does not follow the conventions -


i bound use module provided maven artifact not follow conventions, in sense contains two jar files: artifactid-version.jar , artifactid-version-suffix.jar. have reference both in project, , not know how this. when add dependency artifact in pom (in usual way), end first jar in classpath. how second one, *-suffix.jar, on classpath, too? (without manually copying project structure.)

unfortunately, communication provider of artifact - well, difficult. otherwise straight go , ask them first.

in case matters: artifact contains vaadin widgetset, , suffix "widgets". first jar contains java classes , xml files, second 1 (with suffix) static web content: css, images, html files. apparently accompanies vaadin theme (provided maven artifact). browsed vaadin docs on whether common way of delivering widgetset, no avail.

the suffix mention known classifier in maven terminology.

to both dependencies, add dependency pom (leave 1 have, too):

<dependency>     <groupid>groupid</groupid>     <artifactid>artifactid</artifactid>     <version>version</version>     <classifier>suffix</classifier> </dependency> 

Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -