You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0001-Fix-fix-SnakeYaml.patch.gz
OK, I had a look and this is my finding: I took some of your changes from a8b7aac and I changed the model. It looks like you cannot make snakeyaml-writer and snakeyaml-extended-reader from the same model. Because the extended reader requires locationTracker parameter in the root element. But with this parameter, the AbstractJavaModelloGenerator::isTrackingSupport is true and the class Model will be not relevant (isRelevant == false) and it will not be returned by getClasses(objectModel) in SnakeYamlWriterGenerator.
With the changes it produces compilable code.
Also I changed the org.apache.maven.model package to org.codehaus.modello.test.model, because maven has itself the org.apache.maven.model.Model class in the org.apache.maven:maven-model artifact and it is safer to not have two unrelated classes on the classpath with the same full qualified name.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move to 2.2, but cannot get past one error: seems Model is not imported in writer (in reader is)??
Help!