Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1870a7a
Merge pull request #133 from PublicisSapient/develop
nehgupta13 Nov 17, 2025
d31eb68
Merge pull request #139 from PublicisSapient/develop
mampacch Nov 20, 2025
f4ee477
Merge pull request #141 from PublicisSapient/develop
mampacch Nov 25, 2025
7d3211a
Merge pull request #142 from PublicisSapient/develop
nehgupta13 Nov 26, 2025
a8acf1b
Merge pull request #144 from PublicisSapient/develop
nehgupta13 Nov 27, 2025
e008b88
Merge pull request #146 from PublicisSapient/develop
mampacch Dec 2, 2025
0298304
Merge pull request #148 from PublicisSapient/develop
mampacch Dec 3, 2025
b0cfe7a
Merge pull request #151 from PublicisSapient/develop
mampacch Dec 5, 2025
1f5c837
Merge pull request #153 from PublicisSapient/develop
mampacch Dec 5, 2025
a34b610
Merge pull request #157 from PublicisSapient/develop
nehgupta13 Dec 12, 2025
0291bab
Merge pull request #159 from PublicisSapient/develop
mampacch Dec 15, 2025
2ddf02a
Merge pull request #166 from PublicisSapient/develop
nehgupta13 Dec 18, 2025
41ad92f
Merge pull request #170 from PublicisSapient/develop
gurdeep-singh-49 Dec 19, 2025
0ab7d65
Merge pull request #171 from PublicisSapient/qa-master
rapkalya Dec 19, 2025
071ab65
Fixing Jar issue in prod
ananthpal Dec 19, 2025
aad6def
Fixing Jar issue in prod
ananthpal Dec 19, 2025
f61871b
Fixing Jar issue in prod
ananthpal Dec 19, 2025
39253a0
Merge pull request #174 from PublicisSapient/fix-jar-issue-ap
rapkalya Dec 19, 2025
254173b
updated pipeline
rapkalya Dec 19, 2025
a383509
corrected name
rapkalya Dec 19, 2025
d847516
Merge pull request #178 from PublicisSapient/prod-workflow
rapkalya Dec 19, 2025
1cb4679
Update common.version property to 15.0.0
Dec 22, 2025
99d3567
[maven-release-plugin] prepare release 15.0.0
Dec 22, 2025
7afc9b5
[maven-release-plugin] prepare for next development iteration
Dec 22, 2025
d27fb64
Update common.version property to 15.1.0-SNAPSHOT
Dec 22, 2025
97a976b
Update Processors_CI_CD_Prod_Workflow.yaml
sandhami Dec 22, 2025
dfe8965
Update Processors_CI_CD_Prod_Workflow.yaml
sandhami Dec 22, 2025
bcc0e51
Update Processors_CI_CD_Prod_Workflow.yaml
sandhami Dec 22, 2025
9608871
Update Dockerfile
sandhami Dec 22, 2025
159a2cd
Update Dockerfile
sandhami Dec 22, 2025
fd07a73
Update Processors_CI_CD_Prod_Workflow.yaml
sandhami Dec 22, 2025
160efe6
added sonar plugin in pom
rapkalya Jan 5, 2026
9a8c367
Merge pull request #180 from PublicisSapient/sonar-plugin-FIX
gurdeep-singh-49 Jan 5, 2026
825d333
Merge pull request #179 from PublicisSapient/master
gurdeep-singh-49 Jan 5, 2026
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
131 changes: 110 additions & 21 deletions .github/workflows/Processors_CI_CD_Prod_Workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,14 @@ on:
- rally-processor
- scm-processor
- ai-data-processor
- jira-xray-zephyr-squad
- jira-zephyr-scale

# Define environment variables
env:
JIRA_NAME: knowhow-processors-jira
JIRA_XRAY_ZEPHYR_SQUAD_NAME: knowhow-processors-jira-xray-zephyr-squad
JIRA_ZEPHYR_SCALE_NAME: knowhow-processors-jira-zephyr-scale
DEVOPS_NAME: knowhow-processors-devops-processor
AZUREBOARD_NAME: knowhow-processors-azure-boards
AZUREPIPELINE_NAME: knowhow-processors-azure-pipeline-repo-processor
Expand All @@ -62,6 +66,7 @@ jobs:
- name: Set IMAGE_TAG for Prod
run: |
echo "IMAGE_TAG=${{ github.event.inputs.release_tag }}" >> $GITHUB_ENV
echo "VALUES_FILE=values-prod.yaml" >> $GITHUB_ENV

- name: Checkout Repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -111,7 +116,7 @@ jobs:

- name: Clone & Build knowhow-common dependency
run: |
BRANCH_TO_CLONE="${{ github.event.inputs.knowhow_common_branch }}"
BRANCH_TO_CLONE="${{ github.event.inputs.release_tag }}"
git clone --branch $BRANCH_TO_CLONE https://github.com/PublicisSapient/knowhow-common.git
cd knowhow-common
mvn clean install -Ddockerfile.skip=true
Expand All @@ -130,30 +135,22 @@ jobs:
-DdepVersion=$COMMON_VERSION \
-DforceVersion=true

- name: Build & Skip Test Processor
if: ${{ github.event.inputs.test == 'false' }}
run: |
mvn clean install -Ddockerfile.skip=true -DskipTests

- name: Build & Test Processor
if: ${{ github.event.inputs.test == 'true' }}
run: |
mvn clean install -Ddockerfile.skip=true

- name: SonarQube Analysis - Processors
if: ${{ github.event.inputs.test == 'true' }}
run: |
mvn sonar:sonar -Dsonar.projectKey=ENGINEERING.KPIDASHBOARD.PROCESSORS \
-Dsonar.projectName=ENGINEERING.KPIDASHBOARD.PROCESSORS \
-Dsonar.branch.name=${{ env.GITHUB_HEAD_NAME }} \
-Dsonar.host.url=${{ secrets.SONARQUBE_HOST }} \
-Dsonar.login=${{ secrets.SONARQUBE_TOKEN }} -f pom.xml
# - name: SonarQube Analysis - Processors
# run: |
# mvn sonar:sonar -Dsonar.projectKey=ENGINEERING.KPIDASHBOARD.PROCESSORS \
# -Dsonar.projectName=ENGINEERING.KPIDASHBOARD.PROCESSORS \
# -Dsonar.branch.name=${{ env.GITHUB_HEAD_NAME }} \
# -Dsonar.host.url=${{ secrets.SONARQUBE_HOST }} \
# -Dsonar.login=${{ secrets.SONARQUBE_TOKEN }} -f pom.xml

- name: Check SonarQube Quality Gate
if: ${{ github.event.inputs.test == 'true' }}
run: |
chmod +x SonarQG.sh
./SonarQG.sh ./target/sonar/report-task.txt
# - name: Check SonarQube Quality Gate
# run: |
# chmod +x SonarQG.sh
# ./SonarQG.sh ./target/sonar/report-task.txt

- name: Build & Push Jira Docker Image
if: ${{ github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira' }}
Expand All @@ -163,6 +160,22 @@ jobs:
docker push $ACR_LOGIN_SERVER/$JIRA_NAME:$IMAGE_TAG
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV

- name: Build & Push JIRA xray squad TEST Docker Image
if: ${{ github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-xray-zephyr-squad' }}
run: |
docker login $ACR_LOGIN_SERVER --username ${{ secrets.SPEEDTOOLS_ACR_USERNAME }} --password ${{ secrets.SPEEDTOOLS_ACR_PASSWORD }}
docker build -t $ACR_LOGIN_SERVER/$JIRA_XRAY_ZEPHYR_SQUAD_NAME:$IMAGE_TAG jira-xray-zephyr-squad/.
docker push $ACR_LOGIN_SERVER/$JIRA_XRAY_ZEPHYR_SQUAD_NAME:$IMAGE_TAG
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV

- name: Build & Push JIRA Zephyr Docker Image
if: ${{ github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-zephyr-scale' }}
run: |
docker login $ACR_LOGIN_SERVER --username ${{ secrets.SPEEDTOOLS_ACR_USERNAME }} --password ${{ secrets.SPEEDTOOLS_ACR_PASSWORD }}
docker build -t $ACR_LOGIN_SERVER/$JIRA_ZEPHYR_SCALE_NAME:$IMAGE_TAG jira-zephyr-scale/.
docker push $ACR_LOGIN_SERVER/$JIRA_ZEPHYR_SCALE_NAME:$IMAGE_TAG
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV

- name: Build & Push DevOps Docker Image
if: ${{ github.event.inputs.processor == 'all' || github.event.inputs.processor == 'devops' }}
run: |
Expand Down Expand Up @@ -212,7 +225,7 @@ jobs:
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV

- name: Checkout Helm charts repo
if: ${{ github.event.inputs.deploy == 'true' && ( github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira' || github.event.inputs.processor == 'devops' || github.event.inputs.processor == 'azureboard' || github.event.inputs.processor == 'azurepipelines' || github.event.inputs.processor == 'scm-processor' || github.event.inputs.processor == 'rally-processor' || github.event.inputs.processor == 'ai-data-processor') }}
if: ${{ github.event.inputs.deploy == 'true' && ( github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira' || github.event.inputs.processor == 'jira-zephyr-scale' || github.event.inputs.processor == 'jira-xray-zephyr-squad' || github.event.inputs.processor == 'devops' || github.event.inputs.processor == 'azureboard' || github.event.inputs.processor == 'azurepipelines' || github.event.inputs.processor == 'scm-processor' || github.event.inputs.processor == 'rally-processor' || github.event.inputs.processor == 'ai-data-processor') }}
run: |
git clone ${{ secrets.SPEEDTOOLS_BITBUCKET_HELM_REPO }}

Expand All @@ -228,6 +241,30 @@ jobs:
git diff --cached --quiet || git commit -m "Update image tag values to ${IMAGE_TAG}"
git push origin HEAD

- name: Update Jira-xray-zephyr-squad Helm values with new image tag
if: ${{ github.event.inputs.deploy == 'true' && ( github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-xray-zephyr-squad' ) }}
run: |
cd build-configurations/KnowHOW-Deploy/$JIRA_XRAY_ZEPHYR_SQUAD_NAME
# Update values.yaml image tag
yq -i ".image.tag = \"${IMAGE_TAG}\"" $VALUES_FILE
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git add $VALUES_FILE
git diff --cached --quiet || git commit -m "Update image tag values to ${IMAGE_TAG}"
git push origin HEAD

- name: Update Jira zephyr-scale Helm values with new image tag
if: ${{ github.event.inputs.deploy == 'true' && ( github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-zephyr-scale' ) }}
run: |
cd build-configurations/KnowHOW-Deploy/$JIRA_ZEPHYR_SCALE_NAME
# Update values.yaml image tag
yq -i ".image.tag = \"${IMAGE_TAG}\"" $VALUES_FILE
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git add $VALUES_FILE
git diff --cached --quiet || git commit -m "Update image tag values to ${IMAGE_TAG}"
git push origin HEAD

- name: Update devops Helm values with new image tag
if: ${{ github.event.inputs.deploy == 'true' && ( github.event.inputs.processor == 'all' || github.event.inputs.processor == 'devops' ) }}
run: |
Expand Down Expand Up @@ -325,6 +362,58 @@ jobs:
run: |
argocd app sync $JIRA_NAME-${{ github.event.inputs.env }}
argocd app wait $JIRA_NAME-${{ github.event.inputs.env }} --health --timeout 300

deploy-jira-xray-zephyr-squad:
runs-on: github-actions-self-hosted-runner
timeout-minutes: 30
needs: [build]
if: ${{ github.event.inputs.deploy == 'true' && (github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-xray-zephyr-squad') }}
steps:
- name: Install ArgoCD CLI
run: |
export ARGO_PATH="$HOME/bin"
mkdir -p $ARGO_PATH
curl -sSL -o "$ARGO_PATH/argocd" https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
chmod +x "$ARGO_PATH/argocd"
echo "$ARGO_PATH" >> $GITHUB_PATH

- name: ArgoCD CLI Login
run: |
argocd login argocd-server \
--username ${{ secrets.SPEEDTOOLS_ARGOCD_USERNAME}} \
--password ${{ secrets.SPEEDTOOLS_ARGOCD_PASSWORD }} \
--plaintext

- name: Deploy Jira Xray Zephyr Squad Processor
run: |
argocd app sync $JIRA_XRAY_ZEPHYR_SQUAD_NAME-${{ github.event.inputs.env }}
argocd app wait $JIRA_XRAY_ZEPHYR_SQUAD_NAME-${{ github.event.inputs.env }} --health --timeout 300

deploy-jira-zephyr-scale:
runs-on: github-actions-self-hosted-runner
timeout-minutes: 30
needs: [build]
if: ${{ github.event.inputs.deploy == 'true' && (github.event.inputs.processor == 'all' || github.event.inputs.processor == 'jira-zephyr-scale') }}
steps:
- name: Install ArgoCD CLI
run: |
export ARGO_PATH="$HOME/bin"
mkdir -p $ARGO_PATH
curl -sSL -o "$ARGO_PATH/argocd" https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
chmod +x "$ARGO_PATH/argocd"
echo "$ARGO_PATH" >> $GITHUB_PATH

- name: ArgoCD CLI Login
run: |
argocd login argocd-server \
--username ${{ secrets.SPEEDTOOLS_ARGOCD_USERNAME}} \
--password ${{ secrets.SPEEDTOOLS_ARGOCD_PASSWORD }} \
--plaintext

- name: Deploy jira-zephyr-scale Processor
run: |
argocd app sync $JIRA_ZEPHYR_SCALE_NAME-${{ github.event.inputs.env }}
argocd app wait $JIRA_ZEPHYR_SCALE_NAME-${{ github.event.inputs.env }} --health --timeout 300

deploy-rally:
runs-on: github-actions-self-hosted-runner
Expand Down
8 changes: 3 additions & 5 deletions ai-data-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,18 @@
~ License.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ai-data-processor</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<description>Microservice used for preparing, enriching and storing data used by the AI components of the platform
</description>

Expand Down
2 changes: 1 addition & 1 deletion argocd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>argocd-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion azure-boards/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>azure-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion azure-pipeline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>azurepipeline-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion azure-repo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>azurerepo-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bamboo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bamboo-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bitbucket-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion github-action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>githubaction-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion github/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>github-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gitlab/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>gitlab-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jenkins-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jira-xray-zephyr-squad/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ WORKDIR $APP_DIR
VOLUME $PROPERTIES_DIR

# Set the JAR file variables
ARG JIRA_TEST_JAR_FILE=jiratest-processor-exec.jar
ARG JIRA_TEST_JAR_FILE=target/jiratest-processor-exec.jar

# Set the properties file names
ARG JIRATEST_PROPERTIES_FILE_NAME=jiratest.properties
Expand Down
2 changes: 1 addition & 1 deletion jira-xray-zephyr-squad/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jiratest-processor</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions jira-zephyr-scale/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ WORKDIR $APP_DIR
VOLUME $PROPERTIES_DIR

# Set the JAR file variables
ARG ZEPHYR_JAR_FILE=zephyr-processor-exec.jar
ARG ZEPHYR_JAR_FILE=target/zephyr-processor-exec.jar

# Set the properties file names
ARG ZEPHYR_PROPERTIES_FILE_NAME=zephyr.properties
Expand All @@ -46,4 +46,4 @@ RUN chown -R $USER:$USER $APP_DIR \
USER $USER:$GID

# Command to run the application
ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar zephyr.jar --spring.config.location=classpath:/BOOT-INF/classes/application.properties --spring.config.additional-location=optional:file:$PROPERTIES_DIR/$ZEPHYR_PROPERTIES_FILE_NAME"]
ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar zephyr.jar --spring.config.location=classpath:/BOOT-INF/classes/application.properties --spring.config.additional-location=optional:file:$PROPERTIES_DIR/$ZEPHYR_PROPERTIES_FILE_NAME"]
2 changes: 1 addition & 1 deletion jira-zephyr-scale/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>zephyr-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jira/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jira-processor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion knowhow-scm-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.publicissapient.kpidashboard</groupId>
<artifactId>processors</artifactId>
<version>14.1.0-SNAPSHOT</version>
<version>15.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>knowhow-scm-processor</artifactId>
Expand Down
Loading