Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Installation (use maven version 3.0.4)

 

Depending  Depending on DB, replace the desired jdbc dependency to the pom.xml 

...

Code Block
 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
	<property name="driverClassName">
		<value>net.sourceforge.jtds.jdbc.Driver</value>
	</property>
	<property name="url">
		<value>jdbc:jtds:sqlserver://localhost:1433;instance=SQLEXPRESS;databaseName=uPortal</value>
 	</property>
	<property name="username">
		<value>sa</value>
	</property>
	<property name="password">
		<value>password</value>
	</property>
</bean>

...

Modify portlet.xml to give the desired group as admin rights to classifieds portlet

...

Code Block
<security-role-ref>
<role-name>Portal_Administrators</role-name>
<role-link>local.2</role-link>
</security-role-ref>

...

If needed, modify ApplicationContext.xml to configure desired Ad Grooming values

...