diff --git a/core/pom.xml b/core/pom.xml
index ac7d35687dd8624aa93affefe06e49b5a6fc6cc4..62acc96b72636d9464f21b484fc1de521e71c802 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -38,4 +38,27 @@
       <version>2.1.4</version>
     </dependency>
   </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>${maven.assembly.version}</version>
+        <configuration>
+          <descriptorRefs>
+            <descriptorRef>jar-with-dependencies</descriptorRef>
+          </descriptorRefs>
+          <appendAssemblyId>false</appendAssemblyId>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>