-
Notifications
You must be signed in to change notification settings - Fork 49
Dependencies Listing
Alexey Valikov edited this page Mar 26, 2015
·
1 revision
To find out, which artifacts your schema depends on, open the JAR file and look for the file under META-INF/maven/${project.groupId}/${project.artifactId}/dependencies.txt
. For example META-INF/maven/org.jvnet.ogc/wms-v_1_0_0/dependencies.txt
.
This file lists the dependencies of your project. Typically something like:
The following files have been resolved:
org.hamcrest:hamcrest-core:jar:1.3:test
junit:junit:jar:4.11:test
com.sun.istack:istack-commons-runtime:jar:2.21:provided
com.sun.xml.fastinfoset:FastInfoset:jar:1.2.13:provided
org.glassfish.jaxb:jaxb-core:jar:2.2.11:provided
org.jvnet.jaxb2_commons:jaxb2-basics-runtime:jar:0.9.2:compile
org.glassfish.jaxb:jaxb-runtime:jar:2.2.11:provided
org.jvnet.staxex:stax-ex:jar:1.7.7:provided
org.glassfish.jaxb:txw2:jar:2.2.11:provided
javax.xml.bind:jaxb-api:jar:2.2.11:provided
In the runtime, you'll need all the compile
and runtime
dependencies. Also make sure that all the provided
dependencies are satisfied.