facebook

native2ascii destination is added as a source folder

  1. MyEclipse Archived
  2.  > 
  3. Bugs
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #309510 Reply

    Stephen Wick
    Member

    I 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

Viewing 1 post (of 1 total)
Reply To: native2ascii destination is added as a source folder

You must be logged in to post in the forum log in