-
Notifications
You must be signed in to change notification settings - Fork 1.9k
IGNITE-13640 copy-libs plugin added. #8406
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
Changes from 2 commits
c1df0af
44d93d1
3a17843
9ce0d4f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -116,4 +116,27 @@ | |
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-dependency-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>copy-libs</id> | ||
| <phase>test-compile</phase> | ||
| <goals> | ||
| <goal>copy-dependencies</goal> | ||
| </goals> | ||
| <configuration> | ||
| <excludeGroupIds>org.gridgain</excludeGroupIds> | ||
|
||
| <outputDirectory>target/libs</outputDirectory> | ||
| <includeScope>runtime</includeScope> | ||
| <excludeTransitive>false</excludeTransitive> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you clarify the following questions, please:
test-compileinstead ofpackage?opencensuslibs will be available atlibsdirectory by default, right? should we copy them from e.g.libs/opencensusdirectory only when this integration is used?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @Mmuzaf ,
Changed to
package. Thank you!All libs will be placed at
libs/optional/ignite-opencensusin the release build.