Skip to content

Commit

Permalink
Fixing pom dependencies (#919)
Browse files Browse the repository at this point in the history
* Fixing pom dependencies

* Fixing jenkins
  • Loading branch information
rodriguez-jorge authored Dec 3, 2024
1 parent 6354884 commit e70bba4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
12 changes: 10 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,15 @@
steps {
script {
CURRENT_STAGE = env.STAGE_NAME
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs}")
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs} -pl '!:mmp-sonar'")
}
}
}
stage('MMP Sonar') {
steps {
script {
CURRENT_STAGE = env.STAGE_NAME
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs} -pl ':mmp-sonar'")
}
}
}
Expand Down Expand Up @@ -71,4 +79,4 @@
notifyBuildToSlack(CURRENT_STAGE)
}
}
}
}
12 changes: 1 addition & 11 deletions mmp-sonar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,6 @@
<artifactId>mule-extension-model-loader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-extension-model-loader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-extension-model-loader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-maven-plugin</artifactId>
Expand Down Expand Up @@ -91,4 +81,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit e70bba4

Please sign in to comment.