Found my problem: The child pom did not have a <parent> entry. :(

Mark L.

On 28 July 2015 at 11:29, V. Mark Lehky <mark.le...@gmail.com> wrote:
> Hello.
>
> I am trying to clean up our poms.
>
> I am getting a warning "Using platform encoding (XYZ actually) to copy
> filtered resources" from one of our projects.
> In the Maven documentation, here
> <https://maven.apache.org/general.html#encoding-warning>, it says:
> "So eliminating the warning is ... as easy as adding the following
> property to your POM (or one of its parent POMs):"
>
> I have
> <properties>
>     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
>   </properties>
> in the parent pom, however in the culprit project I am using:
> <plugin>
>                <groupId>org.apache.maven.plugins</groupId>
>                <artifactId>maven-jar-plugin</artifactId>
>                <version>2.5</version>
>                <executions>
>                  <execution>
>                    <goals>
>                      <goal>test-jar</goal>
>                    </goals>
>                  </execution>
>                </executions>
>              </plugin>
> and this warning is coming from maven-resources-plugin:2.3:resources
>
> Is this a bug? Or am I using it wrong?
>
> Mark.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to