Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNG-6581] - Update to latest Modello plugin version #252

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -19,6 +19,7 @@
* under the License.
*/

import org.apache.maven.model.InputLocation;
import org.apache.maven.model.Model;
import org.apache.maven.model.building.ModelBuildingRequest;
import org.apache.maven.model.building.ModelProblem.Severity;
Expand Down Expand Up @@ -219,6 +220,10 @@ private boolean isQualifiedForInterpolation( Field field, Class<?> fieldType )
{
return false;
}
if ( InputLocation.class.equals( fieldType ) )
{
return false;
}

//noinspection SimplifiableIfStatement
if ( fieldType.isPrimitive() )
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -62,7 +62,7 @@ under the License.
<wagonVersion>3.3.2</wagonVersion>
<securityDispatcherVersion>1.4</securityDispatcherVersion>
<cipherVersion>1.7</cipherVersion>
<modelloVersion>1.10.0</modelloVersion>
michael-o marked this conversation as resolved.
Show resolved Hide resolved
<modelloVersion>1.10.1-SNAPSHOT</modelloVersion>
<jxpathVersion>1.3</jxpathVersion>
<resolverVersion>1.3.3</resolverVersion>
<slf4jVersion>1.7.25</slf4jVersion>
Expand Down