BAEL-5727 - Determine If a Class Implements an Interface in Java

Data model and unit test Class for the BAEL-5727 - Determine If a Class Implements an Interface in Java
This commit is contained in:
HARDEMAN Sebastien
2022-11-24 10:49:09 +01:00
parent 66fb7ea877
commit 28f0b329e7
8 changed files with 172 additions and 0 deletions
@@ -13,6 +13,7 @@
<artifactId>core-java-modules</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<build>
<finalName>core-java-lang-5</finalName>
@@ -24,4 +25,18 @@
</resources>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.2</version>
</dependency>
</dependencies>
</project>