- This topic has 0 replies, 1 voice, and was last updated 14 years, 4 months ago by Stephen Wick.
Viewing 1 post (of 1 total)
-
AuthorPosts
-
Stephen WickMemberI am using MyEclipse 8.5.
My problem is, when I click on Maven4MyEclipse > Update Project Configuration, the folder target/classes is being added to my Web Project as a Source Folder.
pom.xml
<project> ... <build> <plugins> .... <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>native2ascii-maven-plugin</artifactId> <version>1.0-alpha-1</version> <configuration> <dest>target/classes</dest> <src>src/main/resources</src> </configuration> <executions> <execution> <id>native2ascii-utf8</id> <goals> <goal>native2ascii</goal> </goals> <configuration> <encoding>UTF8</encoding> <includes> ApplicationResources_ko.properties, ApplicationResources_no.properties, ApplicationResources_tr.properties, ApplicationResources_zh*.properties </includes> </configuration> </execution> <execution> <id>native2ascii-8859_1</id> <goals> <goal>native2ascii</goal> </goals> <configuration> <encoding>8859_1</encoding> <includes> ApplicationResources_de.properties, ApplicationResources_fr.properties, ApplicationResources_nl.properties, ApplicationResources_pt*.properties </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> ... </project>
If I change the value of the <dest> tag, and click on Maven4MyEclipse > Update Project Configuration, what ever value I put into the <dest> tag gets added to my Web Project as a Source Folder.
This doesn’t seem right to me. Does it seem right to you?
+Stephen
-
AuthorPosts
Viewing 1 post (of 1 total)