Skip to content
Open

test ut #1998

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions core-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,11 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hierynomus</groupId>
<artifactId>smbj</artifactId>
<version>0.11.5</version>
</dependency>
Comment on lines +308 to +312

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The smbj dependency is added without a scope, which defaults to compile scope and packages it into the final build. Since this pull request is for unit testing ("test ut"), this dependency should be scoped to test to avoid unnecessarily increasing the production artifact size.

    <dependency>
      <groupId>com.hierynomus</groupId>
      <artifactId>smbj</artifactId>
      <version>0.11.5</version>
      <scope>test</scope>
    </dependency>

</dependencies>

<build>
Expand Down
Loading