This is an automated email from the ASF dual-hosted git repository.

gitgabrio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-drools.git


The following commit(s) were added to refs/heads/main by this push:
     new 88e414c0a0 [incubator-kie-issues#930] Create a single container for 
dmn files
88e414c0a0 is described below

commit 88e414c0a04e8034c15dfa2daf4c743e4ee95022
Author: Gabriele Cardosi <[email protected]>
AuthorDate: Thu Mar 7 09:52:51 2024 +0100

    [incubator-kie-issues#930] Create a single container for dmn files
    
    Co-authored-by: Gabriele-Cardosi <[email protected]>
---
 kie-dmn/kie-dmn-core/pom.xml                       | 13 +++++++
 kie-dmn/kie-dmn-test-resources/pom.xml             | 42 ++++++++++++++++++++++
 .../AllowedValuesChecksInsideCollection.dmn        |  0
 .../src/test/resources}/TypeConstraintsChecks.dmn  |  0
 kie-dmn/pom.xml                                    |  1 +
 5 files changed, 56 insertions(+)

diff --git a/kie-dmn/kie-dmn-core/pom.xml b/kie-dmn/kie-dmn-core/pom.xml
index cd5b62edf9..092bb3931b 100644
--- a/kie-dmn/kie-dmn-core/pom.xml
+++ b/kie-dmn/kie-dmn-core/pom.xml
@@ -55,6 +55,13 @@
         <classifier>tests</classifier>
         <scope>test</scope>
       </dependency>
+      <dependency>
+        <groupId>org.kie</groupId>
+        <artifactId>kie-dmn-test-resources</artifactId>
+        <version>${project.version}</version>
+        <classifier>tests</classifier>
+        <scope>test</scope>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 
@@ -179,6 +186,12 @@
       <classifier>tests</classifier>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.kie</groupId>
+      <artifactId>kie-dmn-test-resources</artifactId>
+      <classifier>tests</classifier>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>io.smallrye</groupId>
       <artifactId>jandex</artifactId>
diff --git a/kie-dmn/kie-dmn-test-resources/pom.xml 
b/kie-dmn/kie-dmn-test-resources/pom.xml
new file mode 100644
index 0000000000..bb3d105a5b
--- /dev/null
+++ b/kie-dmn/kie-dmn-test-resources/pom.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the 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";>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.kie</groupId>
+    <artifactId>kie-dmn</artifactId>
+    <version>999-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>kie-dmn-test-resources</artifactId>
+
+  <name>KIE :: Decision Model Notation :: Test resources</name>
+  <description>Module to contain all DMN models used for tests</description>
+
+  <properties>
+    <java.module.name>org.kie.dmn.test.resources</java.module.name>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+</project>
\ No newline at end of file
diff --git 
a/kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/AllowedValuesChecksInsideCollection.dmn
 
b/kie-dmn/kie-dmn-test-resources/src/test/resources/AllowedValuesChecksInsideCollection.dmn
similarity index 100%
rename from 
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/AllowedValuesChecksInsideCollection.dmn
rename to 
kie-dmn/kie-dmn-test-resources/src/test/resources/AllowedValuesChecksInsideCollection.dmn
diff --git 
a/kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/TypeConstraintsChecks.dmn
 b/kie-dmn/kie-dmn-test-resources/src/test/resources/TypeConstraintsChecks.dmn
similarity index 100%
rename from 
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/TypeConstraintsChecks.dmn
rename to 
kie-dmn/kie-dmn-test-resources/src/test/resources/TypeConstraintsChecks.dmn
diff --git a/kie-dmn/pom.xml b/kie-dmn/pom.xml
index bcab3a39dd..1b7c2de291 100644
--- a/kie-dmn/pom.xml
+++ b/kie-dmn/pom.xml
@@ -54,6 +54,7 @@
     <module>kie-dmn-core-jsr223-jq</module>
     <module>kie-dmn-core-jsr223</module>
     <module>kie-dmn-ruleset2dmn-parent</module>
+    <module>kie-dmn-test-resources</module>
   </modules>
 
   <dependencyManagement>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to