Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a mavenized sql project, which has a few SQL scripts. These scripts are basically Oracle statements of the form

insert xyz into some_table;
show errors

These files are to be copied to a deploy project, but for the statements to work, some modifications have to be made.

For the moment, we are editing files manually (with the help of Notepad++) so that they turn out like this

insert xyz into some_table\

Is there any way to do this with maven ?Im not sure this is exactly resource filtering, and i'm pretty sure that this is not the purpose of Maven. I've been looking at the maven assembly plugin for the moment, but no luck.

Any thoughts will be appreciated.

Thanks in advance

share|improve this question

1 Answer

up vote 2 down vote accepted

If it's a fairly simple text replacement, then you can use maven-replacer-plugin:

http://code.google.com/p/maven-replacer-plugin/

If all else fails, you can also use maven-antrun-plugin to do anything that ant can do. Here is a prior question that discusses this:

Maven: full search and replace of strings in source files when copying resources

share|improve this answer
looks promising – Tom Jun 22 '11 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.