Hi Anton,

On 6/12/16 12:43 AM, Anton Tanasenko wrote:
Hi,
There is a commit for MNG-2478 which I think could cause problems for
projects that are authored using 3.4.0 and the new resources-filtered
source folder is used (provided it was not configured in the project as
such before). Those projects will not be buildable with prior maven
versions.
This is not something major, but it does break backwards compatibility
somewhat. Is that ok?

Hm..good hint...


The change is this:

diff --git a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
index ae49e84..5abbb2c 100644
--- a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml +++ b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
@@ -62,11 +62,19 @@ under the License.
       <resource>
         <directory>${project.basedir}/src/main/resources</directory>
       </resource>
+      <resource>
+ <directory>${project.basedir}/src/main/filtered-resources</directory>
+        <filtering>true</filtering>
+      </resource>
     </resources>
     <testResources>
       <testResource>
         <directory>${project.basedir}/src/test/resources</directory>
       </testResource>
+      <testResource>
+ <directory>${project.basedir}/src/test/filtered-resources</directory>
+        <filtering>true</filtering>
+      </testResource>
     </testResources>
     <pluginManagement>

which means only adding a new folder which is filtered by default. Yes if a project contains such folder and it is not configured it could cause a problem..


This is one of the points which is important for the release notes...

Thanks.
Karl Heinz



https://issues.apache.org/jira/browse/MNG-2478


2016-06-11 23:21 GMT+03:00 Karl Heinz Marbaise <[email protected]>:

Hi to all Maven users,

is someone of you willing to do some testing on the current state of
development for the upcoming Maven 3.4.0 release?

Please be aware of this *** This is not an official release ***

I have created downloadable packages which are available from here:

Windows: https://s.apache.org/fawM,
Linux: https://s.apache.org/RQ3C


Every kind of feedback is helpful.

This is only a current state of development (Git hash:
644ac9c40ad41bf61e3b099918af33b8eb950621) to get some feedback from the
community...

The current list of changes can be seen in the issue tracker:

https://issues.apache.org/jira/issues/?jql=project%20%3D%20MNG%20AND%20fixVersion%20%3D%203.4.0


Kind regards
Karl Heinz Marbaise

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]






Mit freundlichem Gruß
Karl-Heinz Marbaise
--
SoftwareEntwicklung Beratung Schulung    Tel.: +49 (0) 2405 / 415 893
Dipl.Ing.(FH) Karl-Heinz Marbaise        USt.IdNr: DE191347579
Hauptstrasse 177
52146 Würselen                           http://www.soebes.de

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to