Skip to content

Commit beeb535

Browse files
authored
Fix java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletResponse in OpenICF-java-framework (#66)
1 parent ff949e2 commit beeb535

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

OpenICF-java-framework/openicf-zip/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@
138138
<artifactId>xml-connector</artifactId>
139139
<version>${project.version}</version>
140140
</dependency>
141+
<dependency>
142+
<groupId>javax.servlet</groupId>
143+
<artifactId>javax.servlet-api</artifactId>
144+
<scope>compile</scope>
145+
</dependency>
141146
</dependencies>
142147
<properties>
143148
<!-- If we release this project, we need to include the Forgerock binary license -->

OpenICF-java-framework/openicf-zip/src/assembly/zip.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<include>org.codehaus.groovy.modules.http-builder:*</include>
9595
<include>org.openidentityplatform.openicf.connectors:ssh-connector:jar</include>
9696
<include>org.openidentityplatform.openicf.connectors:groovy-connector:jar</include>
97+
<include>javax.servlet:*</include>
9798
</includes>
9899
</dependencySet>
99100
<dependencySet>

0 commit comments

Comments
 (0)