Update of /cvsroot/squirrel-sql/mavenize
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5232
Modified Files:
mavenize.pl
Log Message:
Fixed website pom. Removed .tmpl suffix to allow Eclispe to recognize the file as a pom.
Index: mavenize.pl
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/mavenize.pl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** mavenize.pl 16 Aug 2009 22:03:13 -0000 1.3
--- mavenize.pl 21 Aug 2009 04:57:57 -0000 1.4
***************
*** 127,131 ****
# Restructure the web-site module
print "Restructuring web-site module\n";
! `cp $mavenizeDir/website-pom.xml $websiteDir`;
`rm -rf $websiteDir/src/main`;
`mkdir -p $websiteDir/src/main/resources`;
--- 127,131 ----
# Restructure the web-site module
print "Restructuring web-site module\n";
! `cp $mavenizeDir/website-pom.xml $websiteDir/pom.xml`;
`rm -rf $websiteDir/src/main`;
`mkdir -p $websiteDir/src/main/resources`;
***************
*** 237,241 ****
EOF
! $plugin_pom_template = Text::Template->new(DELIMITERS => [ '@@--' , '--@@' ], TYPE => 'FILE', SOURCE => 'plugin-pom.xml.tmpl');
--- 237,241 ----
EOF
! $plugin_pom_template = Text::Template->new(DELIMITERS => [ '@@--' , '--@@' ], TYPE => 'FILE', SOURCE => 'plugin-pom.xml');
***************
*** 257,261 ****
open (MODULEPOMFILE,"> $modulespomfile")
or die "Couldn't open file ($modulespomfile): $!\n";
! $plugin_module_pom_template = Text::Template->new(TYPE => 'FILE', SOURCE => 'plugin-module-pom.xml.tmpl');
print MODULEPOMFILE $plugin_module_pom_template->fill_in();
close(MODULEPOMFILE);
--- 257,261 ----
open (MODULEPOMFILE,"> $modulespomfile")
or die "Couldn't open file ($modulespomfile): $!\n";
! $plugin_module_pom_template = Text::Template->new(TYPE => 'FILE', SOURCE => 'plugin-module-pom.xml');
print MODULEPOMFILE $plugin_module_pom_template->fill_in();
close(MODULEPOMFILE);
|