mirror of https://github.com/apache/activemq.git
[NO-JIRA] Add a 'Verify' stage to perform release verfication steps on every build (#905)
- add apache-rat:check - Add exclude .ts to rat config
This commit is contained in:
parent
ead9533d53
commit
91b8a3cebd
|
@ -87,6 +87,13 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
stage('Verify') {
|
||||
steps {
|
||||
echo 'Running apache-rat:check'
|
||||
sh 'mvn apache-rat:check'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Tests') {
|
||||
steps {
|
||||
echo 'Running tests'
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -1402,6 +1402,7 @@
|
|||
<exclude>**/kahadb/**/*.data</exclude>
|
||||
<exclude>**/resources/*.xsd</exclude>
|
||||
<exclude>**/src/test/resources/keystore</exclude>
|
||||
<exclude>**/*.ts</exclude>
|
||||
<!-- web, web-console, web-demo files -->
|
||||
<exclude>**/webapp/mqtt/mqttws31.js</exclude>
|
||||
<exclude>**/webapp/js/dojo.js</exclude>
|
||||
|
|
Loading…
Reference in New Issue