Skip to content

Commit

Permalink
fic: Added missing dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Nov 12, 2023
1 parent 9b9f57e commit 2c70726
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 6 deletions.
28 changes: 22 additions & 6 deletions code-generation/language-base-freemarker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
16 changes: 16 additions & 0 deletions code-generation/protocol-base-mspec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit 2c70726

Please sign in to comment.