ISO-8859-1 - Invalid byte 2 of 3-byte UTF-8 sequence error with Doxia (maven plugin)

2007-11-09 Thread serge . simon
Hello, I'm trying to use the Doxia Maven plugin to automatically render .pdf from APT and i'm encountering this problem, does any of you have an idea about this ? The .apt files are encoded in ISO-8859-1 and contain various french characters (like accentued characters). I got the Invalid byte 2

Re: maven constantly rebuilding everything

2007-11-09 Thread Dan Kigelman
I always assumed this was just the way maven does things :). I think this would be a really useful improvement, thank you! On Nov 8, 2007 9:53 PM, EJ Ciramella [EMAIL PROTECTED] wrote: So no one else has mentioned this? Multiple war files rebuilding every pass? Or jars rebuilding all the

Re: Building a limited set of modules based on pom (or somehow)?

2007-11-09 Thread Aaron Zeckoski
I think the one thing that would help me to work around the build problems we are having would be to simply be able to cause a profile to be activated (which is not the default profile) without requiring the user who is building it to put in a command line parameter of -PprofileId. In fact, even

how to setup archiva security policy ?

2007-11-09 Thread nicolas de loof
Hello, this morning, archiva forced me to change my admin login, with some rules about using some numeric character and not reuse a previous password. Where can I setup/change this policy ? My archiva instance is in a protected corporate network and don't require strict security. What is the

Re: Dependency on another project

2007-11-09 Thread Roland Asmann
Also, do NOT change anything in the POMs of your projects! The new project with POM is only a sort of helper-project with a 'builder-POM'. On Thursday 08 November 2007 20:08, Roland Asmann wrote: Sorry I didn't point that out a little better: Yes, it should be a new project which only

Re: how to setup archiva security policy ?

2007-11-09 Thread Maria Odea Ching
nicolas de loof wrote: Hello, this morning, archiva forced me to change my admin login, with some rules about using some numeric character and not reuse a previous password. Was this from trunk? Where can I setup/change this policy ? My archiva instance is in a protected corporate

Re: how to setup archiva security policy ?

2007-11-09 Thread nicolas de loof
2007/11/9, Maria Odea Ching [EMAIL PROTECTED]: nicolas de loof wrote: Hello, this morning, archiva forced me to change my admin login, with some rules about using some numeric character and not reuse a previous password. Was this from trunk? I use the 1.0-beta-3 release, but

surefire and redirectTestOutputToFile

2007-11-09 Thread nicolas de loof
Hello, My tests use a log4j configuration to log everything in TRACE level to the console, so that I can get detailled execution from my eclipse console. When I run my maven build, the console output makes difficult to detect failed test, so I've set

Re: surefire and redirectTestOutputToFile

2007-11-09 Thread nicolas de loof
Found http://jira.codehaus.org/browse/SUREFIRE-349 about this. Any chance to see the patch applied ? 2007/11/9, nicolas de loof [EMAIL PROTECTED]: Hello, My tests use a log4j configuration to log everything in TRACE level to the console, so that I can get detailled execution from my eclipse

Project dependencies use case

2007-11-09 Thread Hugo Palma
I have a use case where i am developing two projects, and project A depends on project B. What i want to do is a mvn clean compile under project A directory and it will also compile project B and use it's classes as a dependency. Sounds simple enough but i can't seem to be able to get this

Re: how to setup archiva security policy ?

2007-11-09 Thread Brett Porter
the policy is in security.properties in either the conf directory or ~/.m2. I think archiva.properties is also read in the same locations. More information is available here: http://maven.apache.org/archiva/guides/security-configuration.html On 09/11/2007, nicolas de loof [EMAIL PROTECTED]

Re: how to setup archiva security policy ?

2007-11-09 Thread nicolas de loof
Is there an equivalent to ARCHIVA_HOME when archiva.war is deployed on tomcat? 2007/11/9, Brett Porter [EMAIL PROTECTED]: the policy is in security.properties in either the conf directory or ~/.m2. I think archiva.properties is also read in the same locations. More information is available

Re: Building a limited set of modules based on pom (or somehow)?

2007-11-09 Thread Roland Asmann
OK, so I checked out the sources and re-read your mails a couple of times. My first suggestion still sounds the most workable solution to your problem, although I do want to stress that having the parent-POM variable is very unstable and error-prone. To be able to activate more profiles, you

Re: how to setup archiva security policy ?

2007-11-09 Thread Brett Porter
I believe (though my memory might be failing me) that setting the appserver.base context variable will do it. If it works, please write it down for us :) - Brett On 09/11/2007, nicolas de loof [EMAIL PROTECTED] wrote: Is there an equivalent to ARCHIVA_HOME when archiva.war is deployed on

Re: Project dependencies use case

2007-11-09 Thread Roland Asmann
I presume you have this use-case in your IDE, since Maven will NEVER use the source-code of another project and always refers to the packaged version in your repository. What you need is a 'build-project', which contains both projects as modules. Then Maven will recognize they need eachother

Re: Project dependencies use case

2007-11-09 Thread Hugo Palma
It's actually not about IDE integration. It's about continous integration. I have my ci server run the goal clean cobertura:check every hour. This allows me to know within the hour if anyone committed any code that fails the tests. I only want to generate an artifact for my project once a

Re: ISO-8859-1 - Invalid byte 2 of 3-byte UTF-8 sequence error with Doxia (maven plugin)

2007-11-09 Thread Vincent Siveton
Hi Serge, It is a known limitation in the iText plugin. The implementation uses the deprecated itext xml and the xml encoding is hardcoded to utf-8 Cheers, Vincent [1] http://www.lowagie.com/iText/tutorial/ch07.html 2007/11/9, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hello, I'm trying to use

Re: Project dependencies use case

2007-11-09 Thread Roland Asmann
You can't. You can only see if a single projects runs with the latestest installed version of another project. This means that you either have to change the command you run in ci to 'clean install' or live with the fact that updates are only deployed at night. Is it a problem tyo run

Re: Project dependencies use case

2007-11-09 Thread Hugo Palma
Well, the main reason for me not wanting to install is related to a behaviour in the cobertura plugin. Basically if i do install cobertura:check my tests are run twice. If i just do cobertura:check the tests are only run once. I reported this here

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
That's incredible, doing that takes 30 - 40 minutes here. Most developers here are used to a 10 build time. -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 11:08 PM To: Maven Users List Subject: Re: maven constantly rebuilding everything

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
Yeah, hence my confusion - the docs have a slightly different overWrite attribute. -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 2:39 AM To: Maven Users List Subject: RE: what version of the documentation am I looking at The docs are

Re: Project dependencies use case

2007-11-09 Thread Hugo Palma
That doesn't run the check goal of the cobertura plugin. And if i add the check goal to executions section in the cobertura plugin configuration then i get my tests run twice. Roland Asmann wrote: And just running 'clean install'? Since it triggers cobertura as well, shouldn't that be enough?

Re: Project dependencies use case

2007-11-09 Thread Roland Asmann
And just running 'clean install'? Since it triggers cobertura as well, shouldn't that be enough? On Friday 09 November 2007 13:37, Hugo Palma wrote: Well, the main reason for me not wanting to install is related to a behaviour in the cobertura plugin. Basically if i do install

RE: what version of the documentation am I looking at

2007-11-09 Thread Brian E. Fox
The overwrite is an element of artifactItem. At the root you can have overWriteSnapshots, releases Newer etc. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 2:04 PM To: Maven Users List Subject: RE: what version of the documentation am I

Re: maven constantly rebuilding everything

2007-11-09 Thread Wayne Fay
Sounds like your projects are entirely too big -- break 'em up a bit. Even 10min builds sounds rather long -- is this compilation only or including testing? And what portion of that time is consumed by your tests -- at this level (compilation), you should be running very fast unit tests, generally

web interface / scanning cron snapshot purge

2007-11-09 Thread Julien CARSIQUE
Hi, What is the cron format used in archiva ? Where can I find some doc about the web interface ? All I found is http://docs.codehaus.org/display/MAVENUSER/Archiva+1.0.x+Developers+Notes I also want to set the purge on 0 days, 3 snapshots. I have snapshots for same artifact from trunk and

Re: Project dependencies use case

2007-11-09 Thread Roland Asmann
Just read that in the plugin documentation. Too bad, should've been a little bit better to configure imo. That means you're stuck to running it twice I guess... If you trust your developers enough and your ci is a pretty much isolated machine, you could maybe run 2 maven-calls: 'mvn clean

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
I'd love to know what people are building and the size of things, I think our project is larger than most (I'm not stepping into a pissing contest, simply stating the facts). We're working on a massive refactoring both in codeline management and actual code refactoring. Even with the

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
How long before this gets fully released? This is totally our problem where it's always extracting, regardless of changes. Also, is there any way to just have a dependency entry and somehow point this plugin at that version? Otherwise, we're storing version numbers in two places, the dependency

Re: Proxify many repositories under the same url

2007-11-09 Thread cbrown
I'm doing exactly that. They key point turned out to be these settings in settings.xml; servers server idinternal/id usernamem2repo/username password**/password /server ... /servers mirrors mirror mirrorOf*/mirrorOf

Re: how to setup archiva security policy ?

2007-11-09 Thread nicolas de loof
That explains why I get a ${appserver.base} folder created in my tomcat home directory. 2007/11/9, Brett Porter [EMAIL PROTECTED]: I believe (though my memory might be failing me) that setting the appserver.base context variable will do it. If it works, please write it down for us :) -

RE: Proxify many repositories under the same url

2007-11-09 Thread MATHUS Baptiste
OK. With the config you're showing, I suppose maven (on the dev machines) always goes through the archiva server? If yes, then this is exactly what I need. I guess we don't need to define the server part since we don't have any authentication set. Is it the mirrorOf set to * that's important in

Proxify many repositories under the same url

2007-11-09 Thread MATHUS Baptiste
Hi all, We're trying to use archiva as a simple maven proxy. We'd like to be able to provide only one url to our developer boxes that would proxify many repositories. For example, we would put http://ourCIserver/archiva/repository/all/ in every single settings.xml maven file. Behind this url,

Re: web interface / scanning cron snapshot purge

2007-11-09 Thread Brett Porter
On 10/11/2007, Julien CARSIQUE [EMAIL PROTECTED] wrote: What is the cron format used in archiva ? You can check the quartz documentation for details - we should incorporate it though Where can I find some doc about the web interface ? It's being worked on at present - you'll see details on

RE: what version of the documentation am I looking at

2007-11-09 Thread Brian E. Fox
All the functionality discussed below has been released, several versions ago I believe. To avoid declaring the version multiple times, you have a few options: 1. Use dependencyManagement and don't specify a version in the dependency block or the artifactItem 2. Use a property 3. If it is really

Re: Project dependencies use case

2007-11-09 Thread Hugo Palma
Until this problem in cobertura is solved i think i will do that. Thanks for you help.. Cheers Roland Asmann wrote: Just read that in the plugin documentation. Too bad, should've been a little bit better to configure imo. That means you're stuck to running it twice I guess... If you trust

What does Configuration Tag in CI Management ?

2007-11-09 Thread Mac-Systems
Hello, while reading about some questions there on the mailing list i stumbeld about ciManagement systemcontinuum/system notifiers notifier typemail/type sendOnErrortrue/sendOnError sendOnFailuretrue/sendOnFailure sendOnSuccessfalse/sendOnSuccess

issue with plugin beeing reused

2007-11-09 Thread nicolas de loof
Hello, My project uses the antrun plugin to invoke some custom ant tasks that have not (yet) be re-written as mojos. Thos task generate some code ant are tied to the generate-source phase When I build the project modules all works fine. When I run the eclipse:eclipse goal from the parent

Re: issue with plugin beeing reused

2007-11-09 Thread Roland Asmann
Might be a configuration-error. Please post the part of your POM where the ant-run is configured! On Friday 09 November 2007 15:41, nicolas de loof wrote: Hello, My project uses the antrun plugin to invoke some custom ant tasks that have not (yet) be re-written as mojos. Thos task generate

Re: how to setup archiva security policy ?

2007-11-09 Thread Wendy Smoak
On Nov 9, 2007 4:42 AM, Brett Porter [EMAIL PROTECTED] wrote: the policy is in security.properties in either the conf directory or ~/.m2. I think archiva.properties is also read in the same locations. More information is available here:

Re: issue with plugin beeing reused

2007-11-09 Thread nicolas de loof
Here is my antrun configuration. As you can see, I'm setting some plugin dependencies. I'm also using antrun in another module to run a java command line class from sql2java, set as plugin dependency. On the second antrun execution, it's classpath is set from the first one (sql2java) and not the

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
1 - I don't see that option in the unpack mojo http://maven.apache.org/plugins/maven-dependency-plugin/unpack-mojo.html 2 - How do you get the version from the dependency block to the maven-dependency-plugin? 3 - I think the unpack-dependencies is the best bet - I'm going to give this a spin if it

Re: What does Configuration Tag in CI Management ?

2007-11-09 Thread Roland Asmann
Check http://maven.apache.org/pom.html#Continuous_Integration_Management I think this is the e-mail address that is shown as the sender of the mail. On Friday 09 November 2007 15:39, Mac-Systems wrote: Hello, while reading about some questions there on the mailing list i stumbeld about

Re: issue with plugin beeing reused

2007-11-09 Thread Roland Asmann
If one of the ant-runs is defined in a parent to the other, try adding inheritedfalse/inherited... On Friday 09 November 2007 16:15, nicolas de loof wrote: Here is my antrun configuration. As you can see, I'm setting some plugin dependencies. I'm also using antrun in another module to run a

Re: Properties files exclude from jar artifact

2007-11-09 Thread Saloucious
So if i package properties file into my jars, how can I create finally an assembly which create a deploy/conf dir with all properties from jar. We put all properties into this dir because it is easiest to patch it. Wayne Fay wrote: No such all classifier exists. You must specify each

RE: what version of the documentation am I looking at

2007-11-09 Thread Brian E. Fox
dependencyManagement is a maven concept and has nothing directly to do with the plugin. 3: That functionality is in alpha-4 (it's been there since alpha-1 I think) The *-dependencies goal is the way to go if the artifact is also a dependency of your build because then maven core is resolving it

Re: Plugins and Multiple projects

2007-11-09 Thread Grant Ingersoll
I suppose I could copy in a pom that I keep somewhere else if and when I do a fresh checkout of the project. Or, I could try to convince the authors of that project to convert to Maven. Thanks for the help, Grant From: Roland Asmann [EMAIL PROTECTED] Date: November 8, 2007 6:39:51 PM EST

EJB Excludes files in Main Artifact

2007-11-09 Thread Saloucious
Hi, is it possible to exclude files in main artifact , and include these ones in client artificat ? It seems that it is only possible to exclude files in client. -- View this message in context: http://www.nabble.com/EJB-Excludes-files-in-Main-Artifact-tf4778361s177.html#a13669188 Sent from

Re: issue with plugin beeing reused

2007-11-09 Thread nicolas de loof
Not the case. I only have a parent pom to group modules, and all modules are on the same hierarchival level. 2007/11/9, Roland Asmann [EMAIL PROTECTED]: If one of the ant-runs is defined in a parent to the other, try adding inheritedfalse/inherited... On Friday 09 November 2007 16:15,

Re: Plugins and Multiple projects

2007-11-09 Thread Roland Asmann
Best solution would be to ask them to switch to Maven, but for now I think only adding a POM should work. You could ask the developers if they can just add the file to their project, so that you don't have to maintain the file in a different location. Just tell them it's a resource that you

Re: issue with plugin beeing reused

2007-11-09 Thread Roland Asmann
And the ant-run is defined in the parent? Or in the separate modules? On Friday 09 November 2007 16:47, nicolas de loof wrote: Not the case. I only have a parent pom to group modules, and all modules are on the same hierarchival level. 2007/11/9, Roland Asmann [EMAIL PROTECTED]: If one of

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
Wow - that's so much better!! -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 10:30 AM To: Maven Users List Subject: RE: what version of the documentation am I looking at dependencyManagement is a maven concept and has nothing directly to

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
I've managed to isolate a local project that is small and repeatable. When I run mvn install, it always reinstalls the jar into the local repository (seems like another bug with the install plugin): E:\work\up-svcs\lty\proj\LTY-P200712\backoffice\matchServermvn install -Dtest=none [INFO]

Re: issue with plugin beeing reused

2007-11-09 Thread nicolas de loof
parent (POM) - no plugin used |- module1 : antrun for sql2java, with custom plugin dependencies |- module 2 (depends on module1) : antrun for castor, with custom plugin dependencies module2 fails, and antrun classpath is set to modul1 configuration I'll try to setup a demonstation project for

Re: maven constantly rebuilding everything

2007-11-09 Thread Daniel Kulp
[INFO] [resources:testResources] [INFO] Using default encoding to copy filtered resources. Are there actually resources being filtered? If so, that would cause it. Filtered resources are always regenerated (you may be filtering in a build number or timestamp or something). Thus, the

Arrg: org.apache.maven.skins:maven-default-skin:jar:RELEASE

2007-11-09 Thread Clark, Michael
So I have searched the internet and read about all the people that have hit this issue, but I haven't found any solutions to this. Does anyone have a clear and concise method for resolving this? [INFO] Scanning for projects... [INFO]

Re: maven constantly rebuilding everything

2007-11-09 Thread Damien Lecan
Interested by this Jira ? http://jira.codehaus.org/browse/MNG-2854 It seems to be corrected in maven-archiver 2.3 (not released) You could ask for a release. Then maven-jar-plugin, maven-ear-plugin, maven-war-plugin, ... will have to upgrade ... Damien 2007/11/9, EJ Ciramella [EMAIL

[m2] svn not recognized?

2007-11-09 Thread Mick Knutson
I have the following scm definition: scm connectionscm:svn:http://svn.net.immi.com/svn/immi/trunk /connection developerConnectionscm:svn:http://svn.net.immi.com/svn/immi/trunk /developerConnection url${svn.url}/url /scm plugin

Re: [m2] svn not recognized?

2007-11-09 Thread Wendy Smoak
On Nov 9, 2007 9:28 AM, Mick Knutson [EMAIL PROTECTED] wrote: [ERROR] Command output: [ERROR] 'svn' is not recognized as an internal or external command, operable program or batch file. You need the command-line svn executable available on your path for this to work. -- Wendy

Re: [m2] svn not recognized?

2007-11-09 Thread Mick Knutson
Ok, then another general question would be... Should I do a build and release from the svn trunk itself? Or should I have a build machine actually get an update of the code locally then build and release? On 11/9/07, Wendy Smoak [EMAIL PROTECTED] wrote: On Nov 9, 2007 9:28 AM, Mick Knutson

Re: maven constantly rebuilding everything

2007-11-09 Thread Wayne Fay
It certainly sounds like you are dealing with a large project. Since you mentioned images, I wonder how much of the 200mb is actually code and how much is everything else? I assume you've run an analysis. I've looked into this rebuilding every jar issue at some point. In short, Maven creates a

Re: Properties files exclude from jar artifact

2007-11-09 Thread Wayne Fay
Use dependencies plugin to unpack the properties files into your current module so they will be packaged by assembly into the conf dir you require. Wayne On 11/9/07, Saloucious [EMAIL PROTECTED] wrote: So if i package properties file into my jars, how can I create finally an assembly which

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
Yeah, I'm able to prevent rebuilding of all the jars, not re-downloading the resources as part of the maven-dependency-plugin - so that much is ok. I'm still getting everything installed every time I build even if it didn't have to re-jar the source. Is there a solution/jira for that (I

Re: Arrg: org.apache.maven.skins:maven-default-skin:jar:RELEASE

2007-11-09 Thread Dennis Lundberg
Are you using a proxy for downloading maven stuff? If so, make sure that it has the artifact org.apache.maven.skins:maven-default-skin in it. Clark, Michael wrote: So I have searched the internet and read about all the people that have hit this issue, but I haven't found any solutions to

RE: Proxify many repositories under the same url

2007-11-09 Thread cbrown
Archiva provides a rudimentary user management through the web interface. I.e., you need to create a user and assign the user roles that allow read access (Repository Observer) or write access (Repository Manager). So, you will need the servers. You didn't mention deployment originally.

Assembly question

2007-11-09 Thread Grant Ingersoll
Hi, I have a project with 3 sub projects, one of which is an installer. I want to run assembly:directory on each of these projects, but I need a way of guaranteeing that installer runs last, since it is dependent on the other 2 projects. Anyone have any suggestions on how to do this?

[1.1-beta-3] Description: $build.buildDefinition.description

2007-11-09 Thread Andreas Guther
I see the following line in my build status mail notifications: Description: $build.buildDefinition.description It comes up under the Build Definition section. Where is this entry defined or missing so I can add the missing content? Andreas

How to deploy corporate-pom?

2007-11-09 Thread kroe
I am planning to have a corporate-pom that contains distributionManagement information for a builds repository (all builds get dumped in there). I can't figure out how to deploy the corporate pom though. I think the way to do it is to upload the corporate-pom to our internal archiva repository

Re: [1.1-beta-3] Description: $build.buildDefinition.description

2007-11-09 Thread Emmanuel Venisse
Edit the build definition used by your project (project group or project level) and set the description field. Emmanuel Andreas Guther a écrit : I see the following line in my build status mail notifications: Description: $build.buildDefinition.description It comes up under the Build

RE: How to deploy corporate-pom?

2007-11-09 Thread Siegmann Daniel, NY
How do I package the corporate pom? Do I just upload it to archiva in a directory called corporate-pom with just the pom.xml file in there? No. This is a Maven project like any other. Just have the following in your POM: project packagingpom/packaging ... /project Then use the Maven deploy

Re: [m2] dashboard error....

2007-11-09 Thread Mick Knutson
[DEBUG] tomcat:jasper-runtime:jar:5.5.15:provided [DEBUG] com.sun.tools.doclets:doccheck:jar:1.2b2:test [DEBUG] com.agical.rmock:rmock:jar:2.0.0-rc-6:test [INFO] Reactor build order: [INFO] Delta Dental ESP DAP Project Overview [INFO] Utilities (Module Group) [INFO] Utilities Common

assembly plugin (multiple files with the same name)

2007-11-09 Thread Brandon Enochs
Is there anyway to force the assembly plugin to add multiple files of the same name to a jar file instead of justing choosing the last one that was unpacked with the jar-with-dependencies descriptor? I have numerous META-INF/... files with the same name and they all need to be included in the

[ARCHETYPE - CUSTOM PARAMETERS]

2007-11-09 Thread João Kreuzberg
Hello guys, is there anyway to add custom parameters on archetype:create and recover them within the velocity context? ex.: -DuserName=ivanirjoao and then on velocity $userName Any help is appreciated. Best regards, -- Ivanir João Kreuzberg

RE : [war] warSourceExcludes not working for war:inplace

2007-11-09 Thread Adrian Gonzalez
Sorry, same question was already asked in mailing list. See http://www.nabble.com/forum/ViewPost.jtp?post=12760227framed=yskin=177. I've raised a JIRA http://jira.codehaus.org/browse/MWAR-130. --- Adrian Gonzalez [EMAIL PROTECTED] a écrit : Hello, warSourceExcludes appears to work only for

Re: [MAVEN CHECKOUT]

2007-11-09 Thread João Kreuzberg
Thanks, I'll try to do that... Best regards, Joao Kreuzberg On Nov 8, 2007 2:50 AM, Wayne Fay [EMAIL PROTECTED] wrote: Maven is simply looking to download the pom files for those dependencies, which apparently are missing in the repos you've configured. Please encourage the providers of

RE: [1.1-beta-3] Description: $build.buildDefinition.description

2007-11-09 Thread Andreas Guther
That seems to be a bug. First I think if the description is empty than there should be an empty entry in the email rather than the variable name. Then I noticed that when trying to add the description later with Edit under Group I cannot save the changes but see a huge FreeMarker Template

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
Well, maybe I'm not quite out of the woods. Process-resources always moves some files into classes so I guess this will forever jar stuff up, right? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 1:13 PM To: Maven Users List Subject: