Author: mheath
Date: Thu Sep 6 21:39:58 2007
New Revision: 573450
URL: http://svn.apache.org/viewvc?rev=573450&view=rev
Log:
Fixed build so that http client will compile and examples will compile.
Modified:
mina/trunk/example/pom.xml
mina/trunk/mina-protocol-client-http/pom.xml
mina/trunk/pom.xml
Modified: mina/trunk/example/pom.xml
URL:
http://svn.apache.org/viewvc/mina/trunk/example/pom.xml?rev=573450&r1=573449&r2=573450&view=diff
==============================================================================
--- mina/trunk/example/pom.xml (original)
+++ mina/trunk/example/pom.xml Thu Sep 6 21:39:58 2007
@@ -23,6 +23,12 @@
<version>${pom.version}</version>
<scope>compile</scope>
</dependency>
+
+ <dependency>
+ <groupId>org.apache.mina</groupId>
+ <artifactId>mina-protocol-client-http</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
<dependency>
<groupId>org.slf4j</groupId>
Modified: mina/trunk/mina-protocol-client-http/pom.xml
URL:
http://svn.apache.org/viewvc/mina/trunk/mina-protocol-client-http/pom.xml?rev=573450&r1=573449&r2=573450&view=diff
==============================================================================
--- mina/trunk/mina-protocol-client-http/pom.xml (original)
+++ mina/trunk/mina-protocol-client-http/pom.xml Thu Sep 6 21:39:58 2007
@@ -31,6 +31,11 @@
<scope>compile</scope>
</dependency>
<dependency>
+ <groupId>org.apache.mina.http.codec</groupId>
+ <artifactId>mina-filter-codec-http</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
Modified: mina/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/mina/trunk/pom.xml?rev=573450&r1=573449&r2=573450&view=diff
==============================================================================
--- mina/trunk/pom.xml (original)
+++ mina/trunk/pom.xml Thu Sep 6 21:39:58 2007
@@ -94,6 +94,9 @@
<module>integration-jmx</module>
<module>example</module>
<module>transport-serial</module>
+ <module>mina-filter-codec-http</module>
+ <module>mina-protocol-client-http</module>
+ <module>mina-protocol-server-http</module>
</modules>
<build>