[virtualcommons-svn] SF.net SVN: virtualcommons:[102] mentalmodels/trunk
Status: Beta
Brought to you by:
alllee
From: <al...@us...> - 2009-04-17 22:32:54
|
Revision: 102 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=102&view=rev Author: alllee Date: 2009-04-17 22:32:45 +0000 (Fri, 17 Apr 2009) Log Message: ----------- adding blazeds dependencies Modified Paths: -------------- mentalmodels/trunk/pom.xml mentalmodels/trunk/src/main/webapp/WEB-INF/applicationContext.xml mentalmodels/trunk/src/main/webapp/WEB-INF/web.xml Modified: mentalmodels/trunk/pom.xml =================================================================== --- mentalmodels/trunk/pom.xml 2009-04-15 00:30:17 UTC (rev 101) +++ mentalmodels/trunk/pom.xml 2009-04-17 22:32:45 UTC (rev 102) @@ -71,7 +71,31 @@ <artifactId>slf4j-log4j12</artifactId> <version>1.5.2</version> </dependency> - + <dependency> + <groupId>com.adobe.blazeds</groupId> + <artifactId>blazeds-core</artifactId> + <version>3.2.0.3978</version> + </dependency> + <dependency> + <groupId>com.adobe.blazeds</groupId> + <artifactId>blazeds-remoting</artifactId> + <version>3.2.0.3978</version> + </dependency> + <dependency> + <groupId>com.adobe.blazeds</groupId> + <artifactId>blazeds-common</artifactId> + <version>3.2.0.3978</version> + </dependency> + <dependency> + <groupId>com.adobe.blazeds</groupId> + <artifactId>blazeds-proxy</artifactId> + <version>3.2.0.3978</version> + </dependency> + <dependency> + <groupId>com.adobe.blazeds</groupId> + <artifactId>blazeds-opt</artifactId> + <version>3.2.0.3978</version> + </dependency> </dependencies> <build> <finalName>mme</finalName> @@ -127,12 +151,12 @@ can be invoked via mvn -P ant -D target=initialize-data --> - <property name="compile.classpath" refid="maven.compile.classpath" /> - <property name="runtime.classpath" refid="maven.runtime.classpath" /> - <property name="test.classpath" refid="maven.test.classpath" /> - <property name="plugin.classpath" refid="maven.plugin.classpath" /> + <property name="compile.classpath" refid="maven.compile.classpath"/> + <property name="runtime.classpath" refid="maven.runtime.classpath"/> + <property name="test.classpath" refid="maven.test.classpath"/> + <property name="plugin.classpath" refid="maven.plugin.classpath"/> <ant antfile="${basedir}/init-db.ant.xml" inheritRefs="true" inheritAll="true"> - <target name="${target}" /> + <target name="${target}"/> </ant> </tasks> </configuration> @@ -148,5 +172,4 @@ </dependencies> </profile> </profiles> - </project> Modified: mentalmodels/trunk/src/main/webapp/WEB-INF/applicationContext.xml =================================================================== --- mentalmodels/trunk/src/main/webapp/WEB-INF/applicationContext.xml 2009-04-15 00:30:17 UTC (rev 101) +++ mentalmodels/trunk/src/main/webapp/WEB-INF/applicationContext.xml 2009-04-17 22:32:45 UTC (rev 102) @@ -9,22 +9,19 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" - xmlns:flex="http://www.springframework.org/schema/flex" - xmlns:security="http://www.springframework.org/schema/security" + xmlns:flex="http://www.springframework.org/schema/flex" + xmlns:security="http://www.springframework.org/schema/security" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd - http://www.springframework.org/schema/tx - http://www.springframework.org/schema/tx/spring-tx.xsd - http://www.springframework.org/schema/security/spring-security-2.0.4.xsd - http://www.springframework.org/schema/flex http://www.springframework.org/schema/flex/spring-flex-1.0.xsd + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd + http://www.springframework.org/schema/security/spring-security-2.0.4.xsd + http://www.springframework.org/schema/flex http://www.springframework.org/schema/flex/spring-flex-1.0.xsd "> <!-- Flex related information started --> -<flex:message-broker> - <flex:secured /> -</flex:message-broker> +<flex:message-broker /> /<!-- XXX: Split these out into separate XML files and import them if this file gets too large --> <!-- spring managed daos --> @@ -40,7 +37,6 @@ <!-- Expose services for BlazeDS remoting --> <flex:remote-service ref="studentService" /> - <!-- Flex related information ended--> <bean id="mmeDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> @@ -60,7 +56,6 @@ <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration"/> <property name="hibernateProperties"> <props> - <prop key="hibernate.cglib.use_reflection_optimizer">false</prop> <prop key="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</prop> <prop key="hibernate.show_sql">false</prop> </props> Modified: mentalmodels/trunk/src/main/webapp/WEB-INF/web.xml =================================================================== --- mentalmodels/trunk/src/main/webapp/WEB-INF/web.xml 2009-04-15 00:30:17 UTC (rev 101) +++ mentalmodels/trunk/src/main/webapp/WEB-INF/web.xml 2009-04-17 22:32:45 UTC (rev 102) @@ -4,13 +4,7 @@ --> <web-app> <display-name>Mental Models Experiment</display-name> - <context-param> - <param-name>contextConfigLocation</param-name> - <param-value> - /WEB-INF/applicationContext.xml - </param-value> - </context-param> - + <filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> @@ -26,13 +20,13 @@ </listener> <servlet> - <servlet-name>testdrive</servlet-name> + <servlet-name>mme</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> - <servlet-name>testdrive</servlet-name> + <servlet-name>mme</servlet-name> <url-pattern>/messagebroker/*</url-pattern> </servlet-mapping> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |