Re: Surefire, TestNG + Logging write where???

2011-05-04 Thread Jeff Jensen
This may be too obvious, but just in case: the SureFire output files are usually in ${baseDir}/target/surefire-reports. On Wed, May 4, 2011 at 8:55 PM, Andrew Hughes wrote: > Update, I got standard out to console. But this is still not what I really > want, I would like the logging captured in t

Re: Surefire, TestNG + Logging write where???

2011-05-04 Thread Andrew Hughes
Update, I got standard out to console. But this is still not what I really want, I would like the logging captured in the TestNG reports of possible? On Thu, May 5, 2011 at 10:53 AM, Andrew Hughes wrote: > Hi All, > > I'm using a combination of commons-logging and log4j, but this could really >

Surefire, TestNG + Logging write where???

2011-05-04 Thread Andrew Hughes
Hi All, I'm using a combination of commons-logging and log4j, but this could really be anything (java.util.logging + slf4j) But I am unable to see ANY logs. Nothing in the maven console output and nothing in the TestNG report(s). I've grep'd, nothing, nowhere. This is making life very difficu

Re: central repo?

2011-05-04 Thread Mark Derricutt
+1 to this as well. I was just trying to diagnose why a new artifact I released via oss.sonatype.org wasn't appearing in central ( I'm sure it was last night ), but not now - and now I just get this search engine which seems very inconsistent in its redirect behaviour. -- "Great artists are extr

RE: central repo?

2011-05-04 Thread Jim McCaskey
I just got hit by this as well. Thought central had been hijacked. Is there any way to get the full URL back? That has been so helpful just to be able to copy/paste/send to others. Needless to say, the url itself contains valuable information about the artifact in question. Now you have tha

RE: central repo?

2011-05-04 Thread Nord, James
That doesn't browse the repo it browses what it thinks is the repo (or the index...) e.g. there is no org.eclipse.tycho but there is Also which repo does it think that is - the UK mirror whuch may or may not be updated with the latest deployment??!? http://repo1.maven.org/maven2/org/eclips

Re: central repo?

2011-05-04 Thread Arnaud Héritier
Hi, You can continue to browse the repository from here : http://search.maven.org/#browse%7C47 Is it what you searched ? Arnaud On Thu, May 5, 2011 at 12:09 AM, Nord, James wrote: > Hi all, > > What happened recently to the central repos and their mirrors (uk). > > When I try to browse I now

central repo?

2011-05-04 Thread Nord, James
Hi all, What happened recently to the central repos and their mirrors (uk). When I try to browse I now get redirected to search.maven.org which is not a good thing when trying to work out why something isn't working as expected when proxied via a repo manager. Also I guess these searches run o

Re: Modify build order?

2011-05-04 Thread Asmann, Roland
I have never used the 'setupInclude' and 'pomInclude' myself, I use something along these lines: maven-invoker-plugin clean install ${java.home} true true ${file.encoding} ${user.language} ${eclipse.build} ${eclips

Re: Modify build order?

2011-05-04 Thread morty
I now added the master pom as a common parent for the below parent project poms: master |--> pom.xml (reference below parent projects as relative submodules) a |--> a.parent |--> pom.xml (parent for this pom is the master pom.xml) ... |--> a.child |--> pom.xml b |--> b.parent

[ANN] Maven Doxia Tools 1.4 Released

2011-05-04 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven Doxia Tools, version 1.4 This shared component has some utilities that are useful when integrating Doxia in Maven, mainly for site generation and report creation. http://maven.apache.org/shared/maven-doxia-tools/ You should specify t

RE: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-04 Thread sipungora
org.apache.maven.plugins maven-eclipse-plugin 2.8 com.go

Re: Maven release plugin question

2011-05-04 Thread Yaakov Chaikin
I think I kind of understand what's going on, but not sure how to solve it. What's going is that maven is treating my reactor/root pom.xml as a project with the name dlm-cwa-reactor and when it tries to "copy" that project to a tag, it fails because no such path actually exists... This is evident

Re: Maven release plugin question

2011-05-04 Thread Yaakov Chaikin
No, that was just my bad copy/paste. -Yaakov. On Wed, May 4, 2011 at 4:30 AM, Marc Rohlfs wrote: >> >> scm:svn:https://dev.envieta.com:8443/svn/dlm} > >                                                                   ^ > Could it be this closing curly bracket? > > -

Re: Maven release plugin question

2011-05-04 Thread Yaakov Chaikin
svn info shows this: $ svn info Path: . URL: https://dev.envieta.com:8443/svn/dlm/trunk/dlm-cwa Repository Root: https://dev.envieta.com:8443/svn/dlm I tried a few configurations, but they all end up with some variation of the path .../dlm-cwa-reactor does not exist in revision 730 (or whatever nu

depending on project classes in plugin

2011-05-04 Thread Ben Tatham
Hi, I have a plugin that depends on the classes in the project from where the plugin is called. Is there a way to add the un-installed classes (ie add target/classes) to the classpath of the plugin at runtime? Normally, you would do this by adding a to the plugin definition in the pom, but since

RE: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-04 Thread Martin Gainty
referencing these modifications to .project org.eclipse.wst.common.modulecore.ModuleCoreNature org.eclipse.wst.common.project.facet.core.nature org.eclipse.wst.jsdt.core.jsNature did you locate these classes to be on your classpath before res

Re: Modify build order?

2011-05-04 Thread morty
Yeah I tried to specify a new project containing a pom.xml like the one specified here: http://maven.apache.org/plugins/maven-invoker-plugin/examples/prepare-build-env.html But the a.parent project never gets triggered though. The master project/pom file (basically just a folder containing a sin

Re: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-04 Thread sipungora
In my case the tag additionalProjectFacets isn't needed. As a result I've got: -- View this message in context: http://maven.40175.n5.nabble.com/How-to-extend-GWT-Module-to-Dynamic-Web-Module-with-Maven-tp4365106p4369776.html Sent from the Maven - Users mailing list archive at Nabb

Re: Modify build order?

2011-05-04 Thread Asmann, Roland
Take a look at the invoker-plugin, goal 'run' [1]. Roland [1] http://maven.apache.org/plugins/maven-invoker-plugin/run-mojo.html On 04.05.2011 14:56, motes motes wrote: > I have the following projects (physically separated in svn) with the > following structure: > > a > |--> a.parent > |--> pom

Modify build order?

2011-05-04 Thread motes motes
I have the following projects (physically separated in svn) with the following structure: a |--> a.parent |--> pom.xml ... |--> a.child |--> pom.xml b |--> b.parent |--> pom.xml ... |--> b.child |--> pom.xml c |--> c.parent |--> pom.xml ... |--> c.

Re: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-04 Thread sipungora
Ok, I must also add wtp-configs: org.apache.maven.plugins maven-eclipse-plugin 2.8 ... 1.5

SHITTY PLUGIN - Forked process for test builds

2011-05-04 Thread harsha
Hi, I am using the Shitty plugin from the Mojo project for my integration tests. I understant that Shitty creates child processes to run each test build. My issue is that I am using a custominzed setting.xml file for my project. When Shitty is forking child processes it passes the default glo

Re: How to extend GWT Module to Dynamic Web Module with Maven?

2011-05-04 Thread sipungora
Wayne Fay wrote: > >> on the page: >> http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/39e0ff6325e4d504/55bfd342d77ec910?pli=1 >> >> one explains how gwt-module can be extended to Dynamic Web Module in >> order >> to be deploybar into eclipse tomcat. I've configured my pom s

RE: Classifiers and build number

2011-05-04 Thread Claves Do Amaral
-Original Message- From: Claves Do Amaral [mailto:claves.doama...@iggroup.com] >Good morning, > >I have some problems using artefacts deployed with classifiers. The version of >Maven I am using is 3.0.2 Hello Maven users, It looks that after adding the directive org.apache.mave

Re: multiple project builds

2011-05-04 Thread Alex Lopez
You could check out the books freely available in sonatype website (books section), maven reference and maven by example, these really helped me a lot to understand whan a multi-module/reactor project is and how to arrange a good structure for it (ie separate inheritance from modularity etc)

Re: Maven release plugin question

2011-05-04 Thread Marc Rohlfs
scm:svn:https://dev.envieta.com:8443/svn/dlm} ^ Could it be this closing curly bracket? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addition

Classifiers and build number

2011-05-04 Thread Claves Do Amaral
Good morning, I have some problems using artefacts deployed with classifiers. The version of Maven I am using is 3.0.2 We add the classifiers (jacorb) and (sunorb) to our CORBA artefacts, such that the classifier name is added to the jar version i.e "corba-client-base-2.3-SNAPSHOT-jacorb.jar"

Maven console output logging with log4j and JDBC?

2011-05-04 Thread Simpsonex
Dear all, Thanks for having a nice forum and helpful buddies =]. I have googled for a few days and I am confused that whether I can capture the maven console output with log4j and JDBC. I am using Maven 3.0.3 and I can capture the output with the use of tee command. However, I would like to ca

Maven console output logging with log4j and JDBC?

2011-05-04 Thread Simpsonex
Dear all, Thanks for having a nice forum and helpful buddies =]. I have googled for a few days and I am confused that whether I can capture the maven console output with log4j and JDBC. I am using Maven 3.0.3 and I can capture the output with the use of tee command. However, I would like to ca

Maven console output logging with log4j and JDBC?

2011-05-04 Thread Simpsonex
Dear all, Thanks for having a nice forum and helpful buddies =]. I have googled for a few days and I am confused that whether I can capture the maven console output with log4j and JDBC. I am using Maven 3.0.3 and I can capture the output with the use of tee command. However, I would like to ca

Re: Searching Dependencies and Licenses

2011-05-04 Thread Stephen Connolly
On 4 May 2011 03:24, Wayne Fay wrote: > > After using shade to build an uber-jar I was looking through the uber-jar > > with 7zip and found a GLP2 license file. Presumably I have picked up > GPL'd > > artifact somewhere. How would I be able to find out which artifact > contains > > the GPL licens

Maven console output logging with log4j and JDBC?

2011-05-04 Thread Simpsonex
Dear all, Thanks for having a nice forum and helpful buddies =]. I have googled for a few days and I am confused that whether I can capture the maven console output with log4j and JDBC. I am using Maven 3.0.3 and I can capture the output with the use of tee command. However, I would like to capt