You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by eaglei22 <jc...@gmail.com> on 2014/07/08 18:03:59 UTC

Pom.xml errors in Wicket

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
7/8/14 11:01:51 AM CDT: Missing artifact
org.slf4j:slf4j-api:jar:1.6.4:compile

I can't understand why. It does this even if I change it to 6.12.0 for
instance. What can I do to troubleshoot this, I don't get what would cause
this issue. Here is my pom..

<properties>
		<wicket.version>6.15.0</wicket.version>
		<jetty.version>7.4.0.v20110414</jetty.version>
		<log4j.version>1.2.16</log4j.version>
		<slf4j.version>1.6.1</slf4j.version>
	</properties>

	<dependencies>
		
		
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket</artifactId>
			<version>${wicket.version}</version>
			<type>pom</type>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-datetime</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-extensions</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-ioc</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-spring</artifactId>
			<version>${wicket.version}</version>
		</dependency>

		

		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>${slf4j.version}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>


--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Pom.xml errors in Wicket

Posted by eaglei22 <jc...@gmail.com>.
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.version>6.15.0</wicket.version>
		<jetty.version>7.4.0.v20110414</jetty.version>
		<log4j.version>1.2.16</log4j.version>
		<slf4j.version>1.6.1</slf4j.version>
		<slf4j-api.version>1.6.4</slf4j-api.version>
	</properties>

	<dependencies>
		
		

		 <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-core</artifactId>
            <version>${wicket.version}</version>
        </dependency> 
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-datetime</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-extensions</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-ioc</artifactId>
			<version>${wicket.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-spring</artifactId>
			<version>${wicket.version}</version>
		</dependency>

		

		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>${slf4j.version}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4j-api.version}</version>
            <scope>compile</scope>
        </dependency> 

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666501.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Pom.xml errors in Wicket

Posted by Martin Grigorov <mg...@apache.org>.
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 <jc...@gmail.com> wrote:

> 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.version>1.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
> org.slf4j:slf4j-log4j12:jar:1.6.4:compile
> 7/8/14 1:15:36 PM CDT: Missing artifact
> org.slf4j:jcl-over-slf4j:jar:1.6.4:compile
>
> instead of:
>
> <slf4j.version>1.6.1</slf4j.version>
> 7/8/14 1:14:58 PM CDT: Missing artifact
> org.slf4j:slf4j-api:jar:1.6.4:compile
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666499.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Pom.xml errors in Wicket

Posted by eaglei22 <jc...@gmail.com>.
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.version>1.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
org.slf4j:slf4j-log4j12:jar:1.6.4:compile
7/8/14 1:15:36 PM CDT: Missing artifact
org.slf4j:jcl-over-slf4j:jar:1.6.4:compile

instead of:

<slf4j.version>1.6.1</slf4j.version>
7/8/14 1:14:58 PM CDT: Missing artifact
org.slf4j:slf4j-api:jar:1.6.4:compile

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666499.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Pom.xml errors in Wicket

Posted by Martin Grigorov <mg...@apache.org>.
On Tue, Jul 8, 2014 at 9:05 PM, eaglei22 <jc...@gmail.com> wrote:

> Actually I took out:
>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket</artifactId>
>                         <version>${wicket.version}</version>
>                         <type>pom</type>
>                 </dependency>
>
> Which I had left in when adding the wicket-core.. now I just get the
>
> Missing artifact org.slf4j:slf4j-api:jar:${slf4j-api.version}:compile
>

In your first post you mention
   <slf4j.version>1.6.1</slf4j.version>

there is no "-api"


>
>
> <dependency>
>                         <groupId>log4j</groupId>
>                         <artifactId>log4j</artifactId>
>                         <version>1.2.16</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.slf4j</groupId>
>                         <artifactId>slf4j-log4j12</artifactId>
>                         <version>${slf4j.version}</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.slf4j</groupId>
>                         <artifactId>jcl-over-slf4j</artifactId>
>                         <version>${slf4j.version}</version>
>                         <type>jar</type>
>                         <scope>compile</scope>
>                 </dependency>
>                          <dependency>
>                 <groupId>org.slf4j</groupId>
>                 <artifactId>slf4j-api</artifactId>
>                 <version>${slf4j-api.version}</version>
>             </dependency>
>
>
> Is there one I should take out?
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666496.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Pom.xml errors in Wicket

Posted by eaglei22 <jc...@gmail.com>.
Actually I took out:

		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket</artifactId>
			<version>${wicket.version}</version>
			<type>pom</type>
		</dependency>

Which I had left in when adding the wicket-core.. now I just get the 

Missing artifact org.slf4j:slf4j-api:jar:${slf4j-api.version}:compile


<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>${slf4j.version}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		         <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>${slf4j-api.version}</version>
            </dependency> 


Is there one I should take out?

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666496.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Pom.xml errors in Wicket

Posted by Martin Grigorov <mg...@apache.org>.
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 <jc...@gmail.com> wrote:

> 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
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
> 7/8/14 1:01:35 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
> 7/8/14 1:01:36 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
> 7/8/14 1:01:36 PM CDT: [WARN] Missing POM for
> org.slf4j:slf4j-api:jar:${slf4j-api.version}
> 7/8/14 1:01:36 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
> 7/8/14 1:01:36 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
> 7/8/14 1:01:36 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
> 7/8/14 1:01:36 PM CDT: Missing artifact
> org.apache.wicket:wicket:pom:6.15.0:compile
> 7/8/14 1:01:36 PM CDT: Missing artifact
> org.slf4j:slf4j-api:jar:${slf4j-api.version}:compile
> 7/8/14 1:01:37 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
> 7/8/14 1:01:37 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
> 7/8/14 1:01:37 PM CDT: Downloading
>
> http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
> 7/8/14 1:01:38 PM CDT: Maven Builder: AUTO_BUILD
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666495.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Pom.xml errors in Wicket

Posted by eaglei22 <jc...@gmail.com>.
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
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
7/8/14 1:01:35 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
7/8/14 1:01:36 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.pom
7/8/14 1:01:36 PM CDT: [WARN] Missing POM for
org.slf4j:slf4j-api:jar:${slf4j-api.version}
7/8/14 1:01:36 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
7/8/14 1:01:36 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
7/8/14 1:01:36 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/org/slf4j/slf4j-api/${slf4j-api.version}/slf4j-api-${slf4j-api.version}.jar
7/8/14 1:01:36 PM CDT: Missing artifact
org.apache.wicket:wicket:pom:6.15.0:compile
7/8/14 1:01:36 PM CDT: Missing artifact
org.slf4j:slf4j-api:jar:${slf4j-api.version}:compile
7/8/14 1:01:37 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
7/8/14 1:01:37 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
7/8/14 1:01:37 PM CDT: Downloading
http://ept-dev-app01.ca.boeing.com:8080/artifactory/repo/com/boeing/myaccess/ui/7.1-M2-SNAPSHOT/ui-7.1-M2-SNAPSHOT.pom
7/8/14 1:01:38 PM CDT: Maven Builder: AUTO_BUILD 

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492p4666495.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Pom.xml errors in Wicket

Posted by Francois Meillet <fr...@gmail.com>.
Add

 <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-core</artifactId>
            <version>${wicket.version}</version>
        </dependency>
        
        
         <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>${slf4j-api.version}</version>
            </dependency>


François Meillet
Formation Wicket - Développement Wicket





Le 8 juil. 2014 à 18:03, eaglei22 <jc...@gmail.com> a écrit :

> 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
> 7/8/14 11:01:51 AM CDT: Missing artifact
> org.slf4j:slf4j-api:jar:1.6.4:compile
> 
> I can't understand why. It does this even if I change it to 6.12.0 for
> instance. What can I do to troubleshoot this, I don't get what would cause
> this issue. Here is my pom..
> 
> <properties>
> 		<wicket.version>6.15.0</wicket.version>
> 		<jetty.version>7.4.0.v20110414</jetty.version>
> 		<log4j.version>1.2.16</log4j.version>
> 		<slf4j.version>1.6.1</slf4j.version>
> 	</properties>
> 
> 	<dependencies>
> 		
> 		
> 		<dependency>
> 			<groupId>org.apache.wicket</groupId>
> 			<artifactId>wicket</artifactId>
> 			<version>${wicket.version}</version>
> 			<type>pom</type>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.wicket</groupId>
> 			<artifactId>wicket-datetime</artifactId>
> 			<version>${wicket.version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.wicket</groupId>
> 			<artifactId>wicket-extensions</artifactId>
> 			<version>${wicket.version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.wicket</groupId>
> 			<artifactId>wicket-ioc</artifactId>
> 			<version>${wicket.version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.wicket</groupId>
> 			<artifactId>wicket-spring</artifactId>
> 			<version>${wicket.version}</version>
> 		</dependency>
> 
> 		
> 
> 		<dependency>
> 			<groupId>log4j</groupId>
> 			<artifactId>log4j</artifactId>
> 			<version>1.2.16</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.slf4j</groupId>
> 			<artifactId>slf4j-log4j12</artifactId>
> 			<version>${slf4j.version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.slf4j</groupId>
> 			<artifactId>jcl-over-slf4j</artifactId>
> 			<version>${slf4j.version}</version>
> 			<type>jar</type>
> 			<scope>compile</scope>
> 		</dependency>
> 
> 
> --
> View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492.html
> Sent from the Users forum mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
> 


Re: Pom.xml errors in Wicket

Posted by Martin Grigorov <mg...@apache.org>.
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 PM, eaglei22 <jc...@gmail.com> wrote:

> 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
> 7/8/14 11:01:51 AM CDT: Missing artifact
> org.slf4j:slf4j-api:jar:1.6.4:compile
>
> I can't understand why. It does this even if I change it to 6.12.0 for
> instance. What can I do to troubleshoot this, I don't get what would cause
> this issue. Here is my pom..
>
> <properties>
>                 <wicket.version>6.15.0</wicket.version>
>                 <jetty.version>7.4.0.v20110414</jetty.version>
>                 <log4j.version>1.2.16</log4j.version>
>                 <slf4j.version>1.6.1</slf4j.version>
>         </properties>
>
>         <dependencies>
>
>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket</artifactId>
>                         <version>${wicket.version}</version>
>                         <type>pom</type>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket-datetime</artifactId>
>                         <version>${wicket.version}</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket-extensions</artifactId>
>                         <version>${wicket.version}</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket-ioc</artifactId>
>                         <version>${wicket.version}</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.apache.wicket</groupId>
>                         <artifactId>wicket-spring</artifactId>
>                         <version>${wicket.version}</version>
>                 </dependency>
>
>
>
>                 <dependency>
>                         <groupId>log4j</groupId>
>                         <artifactId>log4j</artifactId>
>                         <version>1.2.16</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.slf4j</groupId>
>                         <artifactId>slf4j-log4j12</artifactId>
>                         <version>${slf4j.version}</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>org.slf4j</groupId>
>                         <artifactId>jcl-over-slf4j</artifactId>
>                         <version>${slf4j.version}</version>
>                         <type>jar</type>
>                         <scope>compile</scope>
>                 </dependency>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Pom-xml-errors-in-Wicket-tp4666492.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>