Hi, I think the problem isn't related to maven-resources-plugin. The plugin just copy project resources to the output directory. Since my files in "exploed pakcage" were well, then I think maven-resources-plugin had worked well.
a cup of Java, cheers! Sha Jiang sam-98 wrote: > > Hi, > why don't you try to set the maven-resources-plugin's encoding > property > like this: > <project> > ... > <build> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-resources-plugin</artifactId> > <configuration> > ... > <encoding>UTF-8</encoding> > ... > </configuration> > </plugin> > </plugins> > ... > </build> > ... > </project> > > > 2007/4/30, jiangshachina <[EMAIL PROTECTED]>: >> >> >> Hi, >> Thanks for your reply. >> Unfortunately, I don't resolve the problem with your instruction. >> In fact, I don't believe Maven use UTF-8 as default encoding, >> I think Maven must use native encoding as its default. >> >> I ever set encoding UTF-8 to maven-resources-plugin, >> but yesterday I removed the setting. >> And surely that there isn't any encoding setting in my any POM, now. >> But Maven still manipulate my files with UTF-8?! >> I'm so puzzled by the trouble :-( >> >> Happy a new holiday! >> >> a cup of Java, cheers! >> Sha Jiang >> >> >> 秋秋 wrote: >> > >> > hi, >> > long time no see,I have not meet the trouble like yours,but I have a >> > advance for this,set the encoding's value like the this in your pom.xml >> > >> > <?xml version="1.0" encoding="GBK"?> >> > <project> >> > . >> > . >> > . >> > </project> >> > >> > good luck! >> > >> > 2007/4/29, jiangshachina <[EMAIL PROTECTED]>: >> >> >> >> >> >> Hi guys, >> >> I'm using Maven 2.0.4 + JDK 1.5.0 + Windows 2000 (Chinese version) >> >> Some names of my project's files have Chinese characters. >> >> When I made a package file (ex. war) by running "mvn package", >> >> the Chinese characters would be in wrong encoding. >> >> >> >> With my tests, I find that Maven uses UTF-8 encoding to deal with the >> >> file >> >> names, >> >> because I got right result if the files were in a Linux system with >> >> zh_CN.UTF-8. >> >> But the default encoding of my operation system is GBK. >> >> And I didn't set any non-default encoding to maven-resources-plugin. >> >> How to cancel the trouble? >> >> >> >> Thanks in advance! >> >> >> >> a cup of Java, cheers! >> >> Sha Jiang >> >> -- >> >> View this message in context: >> >> >> http://www.nabble.com/encoding-of-file-name--tf3664927s177.html#a10240267 >> >> Sent from the Maven - Users mailing list archive at Nabble.com. >> >> >> >> >> >> --------------------------------------------------------------------- >> >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> >> >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/encoding-of-file-name--tf3664927s177.html#a10247086 >> Sent from the Maven - Users mailing list archive at Nabble.com. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > -- View this message in context: http://www.nabble.com/encoding-of-file-name--tf3664927s177.html#a10247899 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
