maven-gae-plugin

2010-04-21 Thread Manuel Grau
We have recently updated the plugin to use google app engine 1.3.2

Re: Maven and WTP integration

2010-02-03 Thread Manuel Grau
/org.eclipse.wst.common.component from your app and lib projects? Are there in root of your projects some special files starting with period (except .project and .classpath of course)? Eclipse plugin didn't make these, but I have seen some in some projects on Google Code Search. Thank you Martin Manuel Grau wrote

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Manuel Grau
I don't know anything about Novell Proxy Server, but I can tell you whar we're doing. We have to attach the domain in username: usernamedomain\username/username But, in our case, we don't have proxy setup in our setting.xml because we're using Artifactory http://www.jfrog.org/products.php, a

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Manuel Grau
are using Sonatype Nexus for our company maven repo and we are actually using Novell Border Manager for our proxy server. I wonder if maven is not sending the correct credential properties to Novell Border Manager? Thanks agian! Tonté From: Manuel Grau mang...@gmail.com To: Maven Users

Re: Maven and WTP integration

2010-02-01 Thread Manuel Grau
Hi Martin, My setup is similar to yours. Enter each appN folder and type this: mvn -Dwtpversion=2.0 eclipse:m2eclipse Is what I did and it works for me. 2010/2/1 Martin Schayna martin.scha...@abra.eu Hi all, we have pretty large project, successfully mavenized with Maven 2, split into

Re: Resource Filter files

2010-01-26 Thread Manuel Grau
You're welcome!! 2010/1/26 david.a.willi...@sungard.com Thanks Manuel!! -Original Message- From: Manuel Grau [mailto:mang...@gmail.com] Sent: Monday, January 25, 2010 2:09 PM To: Maven Users List Subject: Re: Resource Filter files Yes, is possible, I did it in my work recently

Re: Resource Filter files

2010-01-25 Thread Manuel Grau
Yes, is possible, I did it in my work recently. But, there is a better way. Notice what I'm doing. I have 4 profiles, activated with a var called env. So, when I call maven I always do: mvn -Denv=pre compile (or anything) I have four files called ${env}.pom.properties. So, you can put this in

Re: Multi-project organization

2010-01-24 Thread Manuel Grau
Let me introduce what I'm doing in my company. We have some maven-java-simple projects used in other projects. These projects are considered common code. Then, our projects are all maven-j2ee-simple projects. These projects have a root pom. Then, we have inside a folder called servlets, with at

Re: Multi-project organization

2010-01-24 Thread Manuel Grau
Is exactly what I'm doing. I only build the project I'm working on. The dependencies are pulled from my local repository. Run mvn clean package install from your jars. Only if you change any of them, you execute mvn package install. I'm not sure if you understand me. 2010/1/24 Josh Stone

building from parent a maven-j2ee-simple project

2009-12-10 Thread Manuel Grau
Hi all, We have a modular project using maven-j2ee-simple archetype. This projects has three modules: servlets, projects, and ear. Servlets contain one module, a web application, projects contains some jar modules and the ear module that generates our application ear. We use inside the ear, and

Re: Maven 2 and axis 1.4

2009-10-21 Thread Manuel Grau
It is very strange. Why don't you try adding axis2 1.4.1? I'm using it and I don't have any problem. 2009/10/20 Wayne Fay wayne...@gmail.com I added axis-1.4.jar in pom.xml, but when I enter the command mvn clean install, the maven just frozen (don't show the problem...). If I added

Re: Two projects in eclipse together

2009-10-19 Thread Manuel Grau
I think the best option is creating a modular project. Then, you can importa modules as eclipse projects. Try this, I think this must work. 2009/10/19 taffb jbass...@gmx.de Hello, I’m sure this is quiet easily answered I’m just missing something pretty trivial. I have two projects in

Re: how to set environment variables

2009-10-19 Thread Manuel Grau
Is not possible? I'm using them. Take a look to my pom: profiles profile iddevelopment/id activation activeByDefaulttrue/activeByDefault property nameenv/name valuedev/value

Re: Maven and Eclipse (WTP)

2009-10-18 Thread Manuel Grau
Hi Giovanni, Currently at job, I'm doing this. We have some projects using maven-j2ee-archetype. We have some web modules, an ear module, and some jar modules. If you can wait until tomorrow, I wrote a guide at work that I can send you. Do you understand some Spanish? If not, I can translate into

Re: Maven and Eclipse (WTP)

2009-10-17 Thread Manuel Grau
Yes, I'm doing at work. Tomorrow Iwill tell you, writing in iPhone is difficult Enviado desde mi iPod El 17/10/2009, a las 20:23, Formenti, Giovanni giovanni.forme...@capgemini.com escribió: Hi, I have to manage a JEE project with Eclipse and Maven. We'd like to use M2Eclise and WTP

Re: Organise integration tests in a Maven project

2009-09-23 Thread Manuel Grau
I suggest to you that you use maven-j2ee-archetype. I'm using it and it's great. If you need more help, let me know. 2009/9/23 Thomas Sundberg thomas.sundb...@agical.com Hi! I'm about to set up en fresh project using Maven. It will contain a web part that will be a war, it will contain a

using my own archtype

2009-09-22 Thread Manuel Grau
I have created my own archetype, to use with google app engine projects. I have packaged it and installed to my local repository usin mvn package install command. I've navigated in my repo to test if the jar is installed, and it is. But when I try to create a project using my archetype I

filtering resources in a war

2009-09-16 Thread Manuel Grau
Hi all, I'm trying to filter some jsp files in my war project. The jsp file I'm tyring to filter is located in src/main/webapp/WEB-INF/includes/ header.jsp. This is my pom.xml maven-war-plugin configuration: plugin

filtering resources

2009-08-31 Thread Manuel Grau
I've generated a *maven-j2ee-simple application*. I'm deploying to OC4J 10.1.3, so, I've created in the ear module two files: * ear/src/main/application/META-INF/data-sources.xml ear/src/main/application/META-INF/orion-application.xml* I'm trying to apply filters in this files, but filtering