Ok. So you are talking about eclipse.  You may want to ask this on the eclipse 
list.

Try a mvn dependency:tree. It will give a you a textual output that is similar 
to the maven 2 eclipse plugin.  If that differs, then eclipse may be doing 
something fishy.

Are you looking at the correct util jar?  What do you see when you look at the 
util jar through eclipse?  You can do so by simply right clicking on that 
dependency and opening the pom from there.  Does that match with that you see 
in the jar?  If not, you may have two util jars on your class path.

> -----Original Message-----
> From: Kireniene [mailto:mar...@idknet.com]
> Sent: Wednesday, June 27, 2012 1:37 PM
> To: users@maven.apache.org
> Subject: RE: The problem with import maven project
> 
> http://maven.40175.n5.nabble.com/file/n5712216/prj.gif
> 
> in screenshort you see Dependency Hierarchy.
> for example:
> gwt-user.jar has 2 child element:
>    validation-api...
>    validation-api...
> 
> spring-jdbc  has 3 child element:
>    spring-beans...
>    spring-core...
>    spring-tx...
> 
> 
> util.jar - no child.
> 
> pom.xml for util.jar :
> 
> 
> <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/xsd/maven-4.0.0.xsd";>
>       <modelVersion>4.0.0</modelVersion>
> 
>       <groupId>ru.minogin</groupId>
>       <artifactId>util</artifactId>
>       <version>0.1</version>
>       <packaging>jar</packaging>
> 
>       <name>util</name>
> 
>       <properties>
>               <project.build.sourceEncoding>UTF-
> 8</project.build.sourceEncoding>
>               <gwtVersion>2.4.0</gwtVersion>
> 
>       <org.springframework.version>3.1.1.RELEASE</org.springframework.v
> ersion>
> 
>       <org.hibernate.core.version>4.1.1.Final</org.hibernate.core.versi
> on>
> 
> <org.hibernate.validator.version>4.2.0.Final</org.hibernate.validator.v
> ersion>
>               <powermock.version>1.4.6</powermock.version>
>       </properties>
> 
>       <build>
>               <finalName>util</finalName>
> 
>               <plugins>
>                       <plugin>
>                               <groupId>org.apache.maven.plugins</groupId>
>                               <artifactId>maven-surefire-plugin</artifactId>
>                               <version>2.7.1</version>
>                               <configuration>
>                                       <useFile>false</useFile>
>                               </configuration>
>                       </plugin>
> 
>                       <plugin>
>                               <groupId>org.codehaus.mojo</groupId>
>                               <artifactId>gwt-maven-plugin</artifactId>
>                               <version>${gwtVersion}</version>
>                               <executions>
>                                       <execution>
>                                               <goals>
>                                                       <goal>resources</goal>
>                                               </goals>
>                                       </execution>
>                               </executions>
>                       </plugin>
>               </plugins>
>               <pluginManagement>
>                       <plugins>
> 
>                               <plugin>
>                                       <groupId>org.eclipse.m2e</groupId>
>                                       <artifactId>lifecycle-
> mapping</artifactId>
>                                       <version>1.0.0</version>
>                                       <configuration>
>                                               <lifecycleMappingMetadata>
>                                                       <pluginExecutions>
>                                                               
> <pluginExecution>
> 
>       <pluginExecutionFilter>
>                                                                               
> <groupId>
> 
>       org.codehaus.mojo
>                                                                               
> </groupId>
> 
>       <artifactId>
>                                                                               
>         gwt-
> maven-plugin
> 
>       </artifactId>
> 
>       <versionRange>
> 
>       [2.4.0,)
> 
>       </versionRange>
>                                                                               
> <goals>
> 
>       <goal>resources</goal>
>                                                                               
> </goals>
> 
>       </pluginExecutionFilter>
>                                                                       <action>
> 
>       <ignore></ignore>
>                                                                       
> </action>
>                                                               
> </pluginExecution>
>                                                       </pluginExecutions>
>                                               </lifecycleMappingMetadata>
>                                       </configuration>
>                               </plugin>
>                       </plugins>
>               </pluginManagement>
>       </build>
> 
>       <repositories>
>               <repository>
>                       <id>Octo Technology Nexus</id>
> 
>       <url>http://forge.octo.com/nexus/content/groups/public</url>
>               </repository>
>       </repositories>
> 
>       <dependencies>
> 
>               <dependency>
>                       <groupId>javax.servlet</groupId>
>                       <artifactId>servlet-api</artifactId>
>                       <version>2.5</version>
>                       <scope>provided</scope>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>com.google.gwt</groupId>
>                       <artifactId>gwt-user</artifactId>
>                       <version>${gwtVersion}</version>
>                       <scope>provided</scope>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>log4j</groupId>
>                       <artifactId>log4j</artifactId>
>                       <version>1.2.17</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>org.hibernate</groupId>
>                       <artifactId>hibernate-core</artifactId>
>                       <version>${org.hibernate.core.version}</version>
>               </dependency>
>               <dependency>
>                       <groupId>org.hibernate</groupId>
>                       <artifactId>hibernate-validator</artifactId>
>                       <version>${org.hibernate.validator.version}</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>org.springframework</groupId>
>                       <artifactId>spring-context-support</artifactId>
>                       <version>${org.springframework.version}</version>
>               </dependency>
>               <dependency>
>                       <groupId>org.springframework</groupId>
>                       <artifactId>spring-webmvc</artifactId>
>                       <version>${org.springframework.version}</version>
>               </dependency>
>               <dependency>
>                       <groupId>org.springframework</groupId>
>                       <artifactId>spring-tx</artifactId>
>                       <version>${org.springframework.version}</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>org.gwtrpcspring</groupId>
>                       <artifactId>gwtrpc-spring</artifactId>
>                       <version>1.01</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>org.freemarker</groupId>
>                       <artifactId>freemarker</artifactId>
>                       <version>2.3.19</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>commons-io</groupId>
>                       <artifactId>commons-io</artifactId>
>                       <version>2.3</version>
>               </dependency>
> 
> 
>               <dependency>
>                       <groupId>org.hamcrest</groupId>
>                       <artifactId>hamcrest-integration</artifactId>
>                       <version>1.3.RC2</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>junit</groupId>
>                       <artifactId>junit</artifactId>
>                       <version>4.10</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.powermock</groupId>
>                       <artifactId>powermock-module-junit4</artifactId>
>                       <version>${powermock.version}</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.powermock</groupId>
>                       <artifactId>powermock-api-easymock</artifactId>
>                       <version>${powermock.version}</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.easymock</groupId>
>                       <artifactId>easymockclassextension</artifactId>
>                       <version>3.0</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.springframework</groupId>
>                       <artifactId>spring-orm</artifactId>
>                       <version>${org.springframework.version}</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.springframework</groupId>
>                       <artifactId>spring-test</artifactId>
>                       <version>${org.springframework.version}</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.hsqldb</groupId>
>                       <artifactId>hsqldb</artifactId>
>                       <version>2.2.7</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>org.mockito</groupId>
>                       <artifactId>mockito-all</artifactId>
>                       <version>1.9.0</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>mysql</groupId>
>                       <artifactId>mysql-connector-java</artifactId>
>                       <version>5.1.19</version>
>                       <scope>test</scope>
>               </dependency>
>               <dependency>
>                       <groupId>commons-dbcp</groupId>
>                       <artifactId>commons-dbcp</artifactId>
>                       <version>1.4</version>
>                       <scope>test</scope>
>               </dependency>
>       </dependencies>
> </project>
> 
> 
> --
> View this message in context: http://maven.40175.n5.nabble.com/The-
> problem-with-import-maven-project-tp5712194p5712216.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to