Author: andreapatricelli Date: Wed Mar 26 08:23:02 2014 New Revision: 1581742
URL: http://svn.apache.org/r1581742 Log: Andrea Patricelli moved from contributor to developer Modified: syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml syncope/branches/1_1_X/pom.xml Modified: syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml?rev=1581742&r1=1581741&r2=1581742&view=diff ============================================================================== --- syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml (original) +++ syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml Wed Mar 26 08:23:02 2014 @@ -22,12 +22,12 @@ under the License. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - <bean id="testDataSource" + <bean id="testDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> - <property name="driverClassName" value="${testdb.driver}"/> - <property name="url" value="${testdb.url}"/> - <property name="username" value="${testdb.username}"/> - <property name="password" value="${testdb.password}"/> - </bean> + <property name="driverClassName" value="org.h2.Driver"/> + <property name="url" value="jdbc:h2:tcp://localhost:9092/testdb"/> + <property name="username" value="sa"/> + <property name="password" value="sa"/> + </bean> </beans> Modified: syncope/branches/1_1_X/pom.xml URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/pom.xml?rev=1581742&r1=1581741&r2=1581742&view=diff ============================================================================== --- syncope/branches/1_1_X/pom.xml (original) +++ syncope/branches/1_1_X/pom.xml Wed Mar 26 08:23:02 2014 @@ -259,6 +259,17 @@ under the License. <url>http://people.apache.org/~gwimmel/</url> <email>[email protected]</email> </developer> + <developer> + <id>andreapatricelli</id> + <name>Andrea Patricelli</name> + <organization>Tirasa</organization> + <organizationUrl>http://www.tirasa.net/</organizationUrl> + <roles> + <role>committer</role> + </roles> + <url>http://people.apache.org/~andreapatricelli/</url> + <email>[email protected]</email> + </developer> </developers> <contributors> @@ -282,12 +293,6 @@ under the License. <organizationUrl>http://www.exprivia.it/home</organizationUrl> <url>http://br.linkedin.com/pub/bruno-moura/1b/2a/806</url> </contributor> - <contributor> - <name>Andrea Patricelli</name> - <email>[email protected]</email> - <organization>Tirasa</organization> - <organizationUrl>http://www.tirasa.net/</organizationUrl> - </contributor> </contributors> <prerequisites>
