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

[SUREFIRE-2012] Use maven-shared-utils instead of surefire-shared-utils in Report Parser. Removed commons-lang in Report Plugin. #470

Merged
merged 1 commit into from Feb 15, 2022

Conversation

Tibor17
Copy link
Contributor

@Tibor17 Tibor17 commented Feb 14, 2022

Following this checklist to help us incorporate your
contribution quickly and easily:

  • [x ] Make sure there is a JIRA issue filed
    for the change (usually before you start working on it). Trivial changes like typos do not
    require a JIRA issue. Your pull request should address just this issue, without
    pulling in other changes.
  • [x ] Each commit in the pull request should have a meaningful subject line and body.
  • [x ] Format the pull request title like [SUREFIRE-XXX] - Fixes bug in ApproximateQuantiles,
    where you replace SUREFIRE-XXX with the appropriate JIRA issue. Best practice
    is to use the JIRA issue title in the pull request title and in the first line of the
    commit message.
  • [x ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
  • Run mvn clean install to make sure basic checks pass. A more thorough check will
    be performed on your pull request automatically.
  • You have run the integration tests successfully (mvn -Prun-its clean install).

If your pull request is about ~20 lines of code you don't need to sign an
Individual Contributor License Agreement if you are unsure
please ask on the developers list.

To make clear that you license your contribution under
the Apache License Version 2.0, January 2004
you have to acknowledge this by using the following check-box.

@Tibor17
Copy link
Contributor Author

Tibor17 commented Feb 14, 2022

@slawekjaranowski
surefire-shared-utils is not necessary in the Report plugin. Using maven-shared-utils instead.

Copy link
Member

@slawekjaranowski slawekjaranowski left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great - I dream about removing surefire-shared-utils (maven-shared-utils) at all 😃

Comment on lines 25 to 29
<parent>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire</artifactId>
<version>3.0.0-M6-SNAPSHOT</version>
</parent>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is indentation correct ... looks like change from 2 -> 4 space?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

4 is correct
I am using Maven profile in IDEA.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@slawekjaranowski
But maven-shared-utils has CLI class, platform specific impl. We need it. Other classes are minor. If we could extract only that as sources and not bytecode, and if we substituted DirectoryScanner with NIO Files, then yes, it would be possible to get right of shaded classes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is not much methods and classes we use, we can write our own, few util methods. The problem is with CLI.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought about surefire-shared-utils not maven-shared-utils ...

I now there are place where we must shade package from maven-shared-utils and other but I hope it can be done in the last module in the tree where maven-shared-utils is used ... but it is another story

Copy link
Contributor Author

@Tibor17 Tibor17 Feb 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@slawekjaranowski
We shade the maven-shared-utils into surefire-shared-utils, and much more.
I can imaging the dependency maven-shared-utils with type sources extracting CLI classes to generated sources, and adding new DirectoryScanner based on NIO in src/main/java. This can be done but you need to have a spare time to write unit tests for the scaner and several trivial utility methods.

@Tibor17
Copy link
Contributor Author

Tibor17 commented Feb 14, 2022

@slawekjaranowski
Anyway, the class org.apache.maven.shared.utils.io.DirectoryScanner is deprecated in m-shared-u. It can be substituted by java.nio.file.DirectoryStream. We should use our own scanner class.

…ls in Report Parser. Removed commons-lang in Report Plugin.
@Tibor17
Copy link
Contributor Author

Tibor17 commented Feb 14, 2022

@slawekjaranowski
Pls check it now. The codestyle XML did not make the trick. The problem was with .editorconfig.

@Tibor17 Tibor17 merged commit afd87d1 into master Feb 15, 2022
@Tibor17 Tibor17 deleted the SUREFIRE-2012 branch February 16, 2022 04:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants