Pom.xml errors in Wicket

2014-07-08 Thread eaglei22
Hello, I am getting an error: Missing artifact org.apache.wicket:wicket:pom:6.15.0:compile This is when I try to update to 6.15.0 from 1.5.5 .. I also get it for slf4j.. Here are the two errors together: 7/8/14 11:01:51 AM CDT: Missing artifact org.apache.wicket:wicket:pom:6.15.0:compile

Re: Pom.xml errors in Wicket

2014-07-08 Thread Francois Meillet
Add dependency groupIdorg.apache.wicket/groupId artifactIdwicket-core/artifactId version${wicket.version}/version /dependency dependency groupIdorg.slf4j/groupId artifactIdslf4j-api/artifactId

Re: Pom.xml errors in Wicket

2014-07-08 Thread Martin Grigorov
Hi, I can see the pom at http://central.maven.org/maven2/org/apache/wicket/wicket/6.15.0/ Not sure why it fails to resolve. But as Francois suggested - just use wicket-core:jar instead. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Jul 8, 2014 at 7:03

Re: Pom.xml errors in Wicket

2014-07-08 Thread eaglei22
I added those, and I still get this: 7/8/14 1:01:35 PM CDT: Refreshing [/sampleproject/pom.xml] 7/8/14 1:01:35 PM CDT: [WARN] Missing POM for org.apache.wicket:wicket:pom:6.15.0 7/8/14 1:01:35 PM CDT: Downloading

Re: Pom.xml errors in Wicket

2014-07-08 Thread Martin Grigorov
Remove the pom dependency. wicket-core:jar is enough. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Jul 8, 2014 at 9:02 PM, eaglei22 jchojnack...@gmail.com wrote: I added those, and I still get this: 7/8/14 1:01:35 PM CDT: Refreshing

Re: Pom.xml errors in Wicket

2014-07-08 Thread eaglei22
Actually I took out: dependency groupIdorg.apache.wicket/groupId artifactIdwicket/artifactId version${wicket.version}/version typepom/type /dependency Which I had left

Re: Pom.xml errors in Wicket

2014-07-08 Thread Martin Grigorov
On Tue, Jul 8, 2014 at 9:05 PM, eaglei22 jchojnack...@gmail.com wrote: Actually I took out: dependency groupIdorg.apache.wicket/groupId artifactIdwicket/artifactId version${wicket.version}/version

Re: Pom.xml errors in Wicket

2014-07-08 Thread eaglei22
I don't understand why it keeps asking for it. If I take it out it's still looking for it, and when I change to slf4j.version1.6.4/slf4j.version I get more errors: 7/8/14 1:15:36 PM CDT: Missing artifact org.slf4j:slf4j-api:jar:${slf4j-api.version}:compile 7/8/14 1:15:36 PM CDT: Missing artifact

Re: Pom.xml errors in Wicket

2014-07-08 Thread Martin Grigorov
slf4j-api.version != slf4j.version read carefully Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Jul 8, 2014 at 9:16 PM, eaglei22 jchojnack...@gmail.com wrote: I don't understand why it keeps asking for it. If I take it out it's still looking for it,

Re: Pom.xml errors in Wicket

2014-07-08 Thread eaglei22
Ah okay, sorry about that. That def makes more sense now. I wasn't 100% sure how to even read the pom but it makes a lot more sense now. I still get the error: Missing artifact org.slf4j:slf4j-api:jar:1.6.4:compile using: properties wicket.version6.15.0/wicket.version