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

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2c70726225 fic: Added missing dependencies.
2c70726225 is described below

commit 2c70726225dabc72ce780b0adacdc8075b59a7b6
Author: Christofer Dutz <[email protected]>
AuthorDate: Sun Nov 12 20:57:05 2023 +0100

    fic: Added missing dependencies.
---
 code-generation/language-base-freemarker/pom.xml | 28 +++++++++++++++++++-----
 code-generation/protocol-base-mspec/pom.xml      | 16 ++++++++++++++
 2 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/code-generation/language-base-freemarker/pom.xml 
b/code-generation/language-base-freemarker/pom.xml
index 8b45145c19..151e879361 100644
--- a/code-generation/language-base-freemarker/pom.xml
+++ b/code-generation/language-base-freemarker/pom.xml
@@ -37,6 +37,12 @@
   </properties>
 
   <dependencies>
+    <dependency>
+      <groupId>org.apache.plc4x</groupId>
+      <artifactId>plc4x-code-generation-protocol-base-mspec</artifactId>
+      <version>0.12.0-SNAPSHOT</version>
+    </dependency>
+
     <dependency>
       <groupId>org.apache.plc4x.plugins</groupId>
       <artifactId>plc4x-code-generation-language-base</artifactId>
@@ -63,12 +69,22 @@
       <groupId>net.objecthunter</groupId>
       <artifactId>exp4j</artifactId>
     </dependency>
-      <dependency>
-          <groupId>org.apache.plc4x</groupId>
-          <artifactId>plc4x-code-generation-protocol-base-mspec</artifactId>
-          <version>0.12.0-SNAPSHOT</version>
-          <scope>compile</scope>
-      </dependency>
+    <!-- JUnit 5 Support -->
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.assertj</groupId>
+      <artifactId>assertj-core</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>
diff --git a/code-generation/protocol-base-mspec/pom.xml 
b/code-generation/protocol-base-mspec/pom.xml
index cfec986121..5644d57530 100644
--- a/code-generation/protocol-base-mspec/pom.xml
+++ b/code-generation/protocol-base-mspec/pom.xml
@@ -116,6 +116,22 @@
       <artifactId>hamcrest-library</artifactId>
       <scope>test</scope>
     </dependency>
+    <!-- JUnit 5 Support -->
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.assertj</groupId>
+      <artifactId>assertj-core</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>
\ No newline at end of file

Reply via email to