Glide
Glide

Reputation: 21265

How do I get maven to look for the war file instead of the jar file?

Maven tries to look for the jar file instead of the war file when I add this dependency in my pom.xml:

<dependency>
    <groupId>org.apache.wicket</groupId>
    <artifactId>wicket-examples</artifactId>
    <version>6.6.0</version>
</dependency>

The jar file doesn't seem to be in http://repo1.maven.org/maven2 but the war file exists. How do I get maven to look for the war file instead?

Upvotes: 5

Views: 748

Answers (1)

Adisesha
Adisesha

Reputation: 5258

<dependency>
   <groupId>org.apache.wicket</groupId>
   <artifactId>wicket-examples</artifactId>
   <version>6.6.0</version>
   <type>war</type>
</dependency>

Upvotes: 8

Related Questions