Closes #2433: submodules must start with pro.taskana
This commit is contained in:
parent
e36e327d85
commit
459c19dd51
|
@ -67,7 +67,7 @@ jobs:
|
|||
path: ${{ env.ARTIFACTS_TASKANA_JARS_PATH }}
|
||||
if-no-files-found: error
|
||||
- name: Remove taskana artifacts from cache
|
||||
run: rm -rf ~/.m2/repository/pro/taskana
|
||||
run: rm -rf ${{ env.ARTIFACTS_TASKANA_JARS_PATH }}
|
||||
- name: Cancel workflow
|
||||
if: failure()
|
||||
uses: andymckay/cancel-action@0.3
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -96,12 +96,6 @@
|
|||
<version.aspectj>1.9.20.1</version.aspectj>
|
||||
|
||||
<!-- Excel to DMN converter dependencies -->
|
||||
<!-- If there is new version of org.camunda.bpm.extension.dmn:dmn-xlsx-converter that is
|
||||
| compatible with jakarta then you need to enter this version here, remove the
|
||||
| submodule dmn-xlsx-converter under routing and you can also delete the property version.docx4j
|
||||
-->
|
||||
<version.dmn-xlsx-converter>0.4.0-taskana-patch</version.dmn-xlsx-converter>
|
||||
<!-- when docx4j version is upgraded, the version from dmn-xlsx-converter needs to be increased too -->
|
||||
<version.docx4j>11.4.9</version.docx4j>
|
||||
<version.jakarta.xml.bind-api>4.0.1</version.jakarta.xml.bind-api>
|
||||
<version.jaxb-core>4.0.4</version.jaxb-core>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
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>
|
||||
<groupId>org.camunda.bpm.extension.dmn</groupId>
|
||||
<groupId>pro.taskana.camunda.bpm.extension.dmn</groupId>
|
||||
<artifactId>dmn-xlsx-converter</artifactId>
|
||||
<version>${version.dmn-xlsx-converter}</version>
|
||||
<name>DMN-XLSX Converter</name>
|
||||
<name>${project.groupId}:${project.artifactId}</name>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<parent>
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.camunda.bpm.extension.dmn</groupId>
|
||||
<groupId>pro.taskana.camunda.bpm.extension.dmn</groupId>
|
||||
<artifactId>dmn-xlsx-converter</artifactId>
|
||||
<version>${version.dmn-xlsx-converter}</version>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue