Hi,

Try to get thread dump of the Maven process. It may tell you what is
hanging.
In Unix like systems you can use:
kill -3 mavenProcessId

On any system you can use JDK's jps and jstack to get the dump as well.


On Fri, Oct 11, 2013 at 10:20 PM, Rob Alesi <rob.al...@appdirect.com> wrote:

> Hey,
>
> I am trying to upgrade from wicket 6, and when I build using Maven, the
> compile hangs. I dont get any error messages and there is no output or
> anything.
>
> my setup
>
>
>    - JDK 1.7
>    - maven 3
>
> maven setup
>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-compiler-plugin</artifactId>
> <version>3.1</version>
> <inherited>true</inherited>
> <configuration>
> <source>1.7</source>
> <target>1.7</target>
> <optimize>true</optimize>
> <debug>true</debug>
> </configuration>
> <dependencies>
> <dependency>
> <groupId>org.codehaus.plexus</groupId>
> <artifactId>plexus-compiler-javac</artifactId>
> <version>1.9.2</version>
> </dependency>
> </dependencies>
> </plugin>
>
> <properties>
> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
> <org.apache.wicket.version>6.10.0</org.apache.wicket.version>
> <powermock.version>1.5.1</powermock.version>
> <org.codehaus.jackson.version>1.9.11</org.codehaus.jackson.version>
> <org.apache.cxf.version>2.5.8</org.apache.cxf.version>
>
> <org.springframework.security.version>3.1.3.RELEASE</org.springframework.security.version>
> <org.springframework.version>3.1.2.RELEASE</org.springframework.version>
> <org.hibernate.version>4.1.9.Final</org.hibernate.version>
>
> <org.apache.httpcomponents.version>4.2.5</org.apache.httpcomponents.version>
> </properties>
>
>
> <dependency>
> <groupId>org.wicketstuff</groupId>
> <artifactId>wicketstuff-annotation</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.wicketstuff</groupId>
> <artifactId>wicketstuff-tinymce</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.wicket</groupId>
> <artifactId>wicket-datetime</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.wicket</groupId>
> <artifactId>wicket-extensions</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.wicket</groupId>
> <artifactId>wicket-auth-roles</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.wicket</groupId>
> <artifactId>wicket-spring</artifactId>
> <version>${org.apache.wicket.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.wicket</groupId>
> <artifactId>wicket</artifactId>
> <version>${org.apache.wicket.version}</version>
> <type>pom</type>
> </dependency>
>
> The compile just hangs. Any help would be appreciated, if you need more
> info please let me know.
>
> thanks,
> Rob
> --
> This communication and any attachments may contain Confidential Information
> of AppDirect, Inc. All unauthorized use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please notify AppDirect,
> Inc. immediately and destroy all copies of this communication. Thank you.
>

Reply via email to