Re: Getting 401 error when trying to use Maven Tomcat plugin

2011-10-12 Thread Денис Душин
Hi, in my case I could fix this problem by giving the full path to the manager applcation configuration urlhttp://localhost:8080/manager/htmlurl servertomcat-server/server /configuration On Tue, Oct 11, 2011 at 7:35 PM,

Archetype for Microsoft SharePoint

2011-10-12 Thread sathishkumar79
Hello All, Could anyone let me know if there is any maven archetype available for SharePoint? At least any reference to create such an archetype? Thanks Regards, Sathish -- View this message in context:

Re: Getting 401 error when trying to use Maven Tomcat plugin

2011-10-12 Thread laredotornado-3
Thanks, but sadly changing the URL to point what you suggest resulted in the same 401 error when I ran mvn tomcat:deploy - Dave -- View this message in context: http://maven.40175.n5.nabble.com/Getting-401-error-when-trying-to-use-Maven-Tomcat-plugin-tp4892167p4895394.html Sent from the Maven -

Re: site:deploy via webdav to a NTLM based location

2011-10-12 Thread sathishkumar79
Hi Siarhei, Could you please share the information on did you modelled the sharepoint project using maven? Are you aware of any archetype for sharepoint projects? Thanks, Sathish -- View this message in context:

Re: Getting 401 error when trying to use Maven Tomcat plugin

2011-10-12 Thread Olivier Lamy
I wonder what is the content of your ~/.m2/settings.xml especially for the server with tomcat-server. 2011/10/12 laredotornado-3 laredotorn...@gmail.com: Thanks, but sadly changing the URL to point what you suggest resulted in the same 401 error when I ran mvn tomcat:deploy - Dave -- View

Re: site:deploy via webdav to a NTLM based location

2011-10-12 Thread Siarhei Dudzin
No, I did not do the deployment to sharepoint in the end. The problem was that the wagon plugin did not support ntlm authentication. On Oct 12, 2011 3:19 PM, sathishkumar79 sathishkuma...@hotmail.com wrote: Hi Siarhei, Could you please share the information on did you modelled the sharepoint

surefire forked processes not killed after timeout

2011-10-12 Thread David J. Biesack
Our forked JUnit/surefire processes are not stopping correctly when timing out within a Maven build (running inside our Jenkins CI server). The maven build finishes and in Jenkins shows a failed/unstable build. These running processes cause problems later, because the tests may be holding a

EJB Plugin eliminating ejb-xml.jar

2011-10-12 Thread Steve Cohen
I am trying to build an EJB Project using maven-ejb-plugin 2.3. Configuration is absolutely vanilla with version3.0/version With debug output I can see that Maven SAYS it's adding ejb-jar.xml to the jar but when I look at the built jar, it's not there. ... [INFO] Building EJB

Re: EJB Plugin eliminating ejb-xml.jar

2011-10-12 Thread Steve Cohen
Another clue: it also says it's adding META-INF/MANIFEST.MF but I don't see that either. Everything else it says it's adding is there. On 10/12/2011 11:42 AM, Steve Cohen wrote: I am trying to build an EJB Project using maven-ejb-plugin 2.3. Configuration is absolutely vanilla with

Re: Disable CPD and Enable PMD check for teh same set of classes

2011-10-12 Thread Wayne Fay
--Need to disable CPD and enable PMD for the same set of classes. Did you RTFM? I think not... http://maven.apache.org/plugins/maven-pmd-plugin/examples/removeReport.html Wayne - To unsubscribe, e-mail:

Re: EJB Plugin eliminating ejb-xml.jar

2011-10-12 Thread Steve Cohen
Never mind. WinZip derangement syndrome. The files are there. On 10/12/2011 11:48 AM, Steve Cohen wrote: Another clue: it also says it's adding META-INF/MANIFEST.MF but I don't see that either. Everything else it says it's adding is there. On 10/12/2011 11:42 AM, Steve Cohen wrote: I am

Unclear documentation filter the deployment descriptor

2011-10-12 Thread Steve Cohen
This is one of the most useless bits of documentation I've ever seen. http://maven.apache.org/plugins/maven-ejb-plugin/examples/filter-deployment-descriptor.html HOW would one inject values into it during the build? WHEN in the build process would one do so? WHY would one need to do so? An

Re: Unclear documentation filter the deployment descriptor

2011-10-12 Thread Dennis Lundberg
You can read more about filtering here: http://maven.apache.org/guides/getting-started/index.html#How_do_I_filter_resource_files I'll add a link to that page from the page you reference below. On 2011-10-12 19:43, Steve Cohen wrote: This is one of the most useless bits of documentation I've

Re: hibernate4: referential integrity of maven central violated

2011-10-12 Thread Jörg Hohwiller
Hi Andy, I was able to access the jandex jar using this repository entry: repository idJBoss Repo/id urlhttps://repository.jboss.org/nexus/content/repositories/releases/url nameJBoss Repo/name /repository thanks. I changed my jboss repo URL as suggested and it works. However, jandex

Pass custom options to svn commands

2011-10-12 Thread C. Benson Manica
I'm trying to get Maven to invoke svn with the --trust-server-cert option to bypass some issues with self-signed certs. The documentation here, http://maven.apache.org/scm/subversion.html, seems to work as advertised for scm:update and such, but seems to have no effect on release:prepare or

Re: Unclear documentation filter the deployment descriptor

2011-10-12 Thread Steve Cohen
On 10/12/2011 01:24 PM, Dennis Lundberg wrote: You can read more about filtering here: http://maven.apache.org/guides/getting-started/index.html#How_do_I_filter_resource_files I'll add a link to that page from the page you reference below. On 2011-10-12 19:43, Steve Cohen wrote: This is one

Configure 'finalName' pattern for all child modules

2011-10-12 Thread Stanimir Stamenkov
I want to configure the 'finalName' for a parent module and all its child modules as: build finalName${artifactId}/fileName /build Is there a way to configure this as a default pattern in the parent and avoid repeating it in the 'build' section for all child modules? --

Re: Configure 'finalName' pattern for all child modules

2011-10-12 Thread Yuen-Chi Lian
Yes. Have you tried? $ cat parent/pom.xml | grep finalName finalName${project.artifactId}-${project.version}-b${buildNumber}/finalName In the child: parent groupIdy/groupId artifactIdx/artifactId versionv/version

Re: Configure 'finalName' pattern for all child modules

2011-10-12 Thread Manfred Moser
Dont use relative path ... 11-10-12 05:30 PM, Yuen-Chi Lian wrote: Yes. Have you tried? $ cat parent/pom.xml | grep finalName finalName${project.artifactId}-${project.version}-b${buildNumber}/finalName In the child: parent groupIdy/groupId

Re: Configure 'finalName' pattern for all child modules

2011-10-12 Thread Stanimir Stamenkov
Thu, 13 Oct 2011 08:30:49 +0800, /Yuen-Chi Lian/: Yes. Have you tried? $ cat parent/pom.xml | grep finalName finalName${project.artifactId}-${project.version}-b${buildNumber}/finalName Ah, yes - thank you. I've already tried it before but for some reason I had determined it doesn't work,