Without knowing what's on your classpath, it's impossible for us to help
you.  Either slf4j is not on the classpath (most likely), or there is some
other strange problem - duplicate jars, different classloaders, etc...

On Thu, Oct 7, 2010 at 12:48 AM, chitrabhanu.das
<[email protected]>wrote:

>
> Thanks for the repley..... Yes I am using maven.... This is my pom.xml
>
>
>
>
> <project xmlns="http://maven.apache.org/POM/4.0.0";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/maven-v4_0_0.xsd";>
>        <modelVersion>4.0.0</modelVersion>
>        <groupId>nic.fts</groupId>
>        <artifactId>FTS2</artifactId>
>        <packaging>war</packaging>
>        <version>1.0-SNAPSHOT</version>
>        <!-- TODO project name  -->
>        <name>quickstart</name>
>        <description></description>
>        <!--
>                TODO <organization> <name>company name</name> <url>company
> url</url>
>                </organization>
>        -->
>        <licenses>
>                <license>
>                        <name>The Apache Software License, Version
> 2.0</name>
>                        <url>http://www.apache.org/licenses/LICENSE-2.0.txt
> </url>
>                        <distribution>repo</distribution>
>                </license>
>        </licenses>
>        <dependencies>
>                <!--  WICKET DEPENDENCIES -->
>                <dependency>
>                        <groupId>org.apache.wicket</groupId>
>                        <artifactId>wicket</artifactId>
>                        <version>${wicket.version}</version>
>                </dependency>
>                <dependency>
>                        <groupId>org.springframework</groupId>
>                        <artifactId>spring</artifactId>
>                        <version>2.5.6</version>
>                </dependency>
>                <dependency>
>                        <groupId>org.apache.wicket</groupId>
>                        <artifactId>wicket-spring</artifactId>
>                        <version>${wicket.version}</version>
>                </dependency>
>                <dependency>
>                        <groupId>org.hibernate</groupId>
>                        <artifactId>hibernate-core</artifactId>
>                        <version>3.3.2.GA</version>
>                </dependency>
>                <dependency>
>                        <groupId>javax.persistence</groupId>
>                        <artifactId>persistence-api</artifactId>
>                        <version>1.0</version>
>                </dependency>
>                <dependency>
>                        <groupId>org.hibernate</groupId>
>                        <artifactId>hibernate-annotations</artifactId>
>                        <version>3.4.0.GA</version>
>                </dependency>
>                <dependency>
>                        <groupId>commons-dbcp</groupId>
>                        <artifactId>commons-dbcp</artifactId>
>                        <version>1.2.2</version>
>                </dependency>
>
>                <dependency> <groupId>org.apache.wicket</groupId>
>                        <artifactId>wicket-extensions</artifactId>
>                        <version>${wicket.version}</version>
>                </dependency>
>
>
>                <!-- LOGGING DEPENDENCIES - LOG4J -->
>                <dependency>
>                        <groupId>org.slf4j</groupId>
>                        <artifactId>slf4j-log4j12</artifactId>
>                        <version>1.4.2</version>
>                </dependency>
>                <dependency>
>                        <groupId>log4j</groupId>
>                        <artifactId>log4j</artifactId>
>                        <version>1.2.14</version>
>                </dependency>
>
>                <!--  JUNIT DEPENDENCY FOR TESTING -->
>                <dependency>
>                        <groupId>junit</groupId>
>                        <artifactId>junit</artifactId>
>                        <version>3.8.2</version>
>                        <scope>test</scope>
>                </dependency>
>
>                <!--  JETTY DEPENDENCIES FOR TESTING  -->
>                <dependency>
>                        <groupId>org.mortbay.jetty</groupId>
>                        <artifactId>jetty</artifactId>
>                        <version>${jetty.version}</version>
>                        <scope>provided</scope>
>                </dependency>
>                <dependency>
>                        <groupId>org.mortbay.jetty</groupId>
>                        <artifactId>jetty-util</artifactId>
>                        <version>${jetty.version}</version>
>                        <scope>provided</scope>
>                </dependency>
>                <dependency>
>                        <groupId>org.mortbay.jetty</groupId>
>                        <artifactId>jetty-management</artifactId>
>                        <version>${jetty.version}</version>
>                        <scope>provided</scope>
>                </dependency>
>        </dependencies>
>        <build>
>                <resources>
>                        <resource>
>                                <filtering>false</filtering>
>                                <directory>src/main/resources</directory>
>                        </resource>
>                        <resource>
>                                <filtering>false</filtering>
>                                <directory>src/main/java</directory>
>                                <includes>
>                                        <include>**</include>
>                                </includes>
>                                <excludes>
>                                        <exclude>**/*.java</exclude>
>                                </excludes>
>                        </resource>
>                </resources>
>                <testResources>
>                        <testResource>
>                                <filtering>false</filtering>
>                                <directory>src/test/java</directory>
>                                <includes>
>                                        <include>**</include>
>                                </includes>
>                                <excludes>
>                                        <exclude>**/*.java</exclude>
>                                </excludes>
>                        </testResource>
>                </testResources>
>                <plugins>
>                        <plugin>
>                                <inherited>true</inherited>
>                                <groupId>org.apache.maven.plugins</groupId>
>
>  <artifactId>maven-compiler-plugin</artifactId>
>                                <configuration>
>                                        <source>1.5</source>
>                                        <target>1.5</target>
>                                        <optimize>true</optimize>
>                                        <debug>true</debug>
>                                </configuration>
>                        </plugin>
>                        <plugin>
>                                <groupId>org.mortbay.jetty</groupId>
>                                <artifactId>maven-jetty-plugin</artifactId>
>                        </plugin>
>                        <plugin>
>                                <groupId>org.apache.maven.plugins</groupId>
>
>  <artifactId>maven-eclipse-plugin</artifactId>
>                                <configuration>
>
>  <downloadSources>true</downloadSources>
>                                </configuration>
>                        </plugin>
>                </plugins>
>                <finalName>FTS</finalName>
>        </build>
>        <properties>
>                <wicket.version>1.4.3</wicket.version>
>                <jetty.version>6.1.4</jetty.version>
>        </properties>
>        </project>
>
>
> Thanks again...
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Problem-using-wicket-extensions-tp2965023p2966215.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>


-- 
Jeremy Thomerson
http://www.wickettraining.com

Reply via email to