My maven group project hierarchy like
maven_group_project
- sub_module_1
- sub_module_2
- sub_module_3
When I run maven command clean package install
on maven_group_project
then it gives sub_module_1.jar
, sub_module_2.jar
and sub_module_3.jar
.
I want to send only one(sub_module_1.jar
) in artifactory (jFrog).
I use this plugin for sending artifact https://wiki.jenkins-ci.org/display/JENKINS/Artifactory+Plugin
How I set the pattern to send only one artifact or any other way to send artifact.
Note: This is a maven build project