diff --git a/challenger/.classpath b/challenger/.classpath
index ede37b2b3619ce57c7da7bb18484d743456a5849..3553992a4fa62c04646cd9e5f3c2e487ce978654 100644
--- a/challenger/.classpath
+++ b/challenger/.classpath
@@ -25,7 +25,6 @@
 	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
 		<attributes>
 			<attribute name="maven.pomderived" value="true"/>
-			<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
 		</attributes>
 	</classpathentry>
 	<classpathentry kind="output" path="target/classes"/>
diff --git a/challenger/pom.xml b/challenger/pom.xml
index 67d44f29f82c96c88e317a84f311e417912c3a95..e5536bd038bfb30d3e2328ce86eddb3b38777788 100644
--- a/challenger/pom.xml
+++ b/challenger/pom.xml
@@ -53,7 +53,20 @@
 				<groupId>org.springframework.boot</groupId>
 				<artifactId>spring-boot-maven-plugin</artifactId>
 			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jar-plugin</artifactId>
+				<configuration>
+					<archive>
+						<manifest>
+							<mainClass>org.challenger.ChallengerApplication</mainClass>
+							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+						</manifest>
+					</archive>
+				</configuration>
+			</plugin>
 		</plugins>
+
 	</build>