Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Check out the source (you'll want the tag that was created for 2.9)

    Code Block
    svn co https://source.sakaiproject.org/contrib/edia/sakai-wicket-for-scorm/branches/sakai-2.9/ wicket-for-scorm
  2. Add a new profile in /wicket-for-scorm/pom.xml and /wicket-for-scorm/tool/pom.xml, and activate them by default

    Code Block
    title/wicket-for-scorm/pom.xml
    <profile>
    	<id>sakai2.9</id>
    	<activation>
    		<activeByDefault>true</activeByDefault>
    	</activation>
    	<modules>
    		<module>tool</module>
    	</modules>
    </profile>
    Code Block
    title/wicket-for-scorm/tool/pom.xlm
    <profile>
    	<id>sakai2.9</id>
    	<activation>
    		<activeByDefault>true</activeByDefault>
    	</activation>
    	<dependencies>
    		<!-- Sakai dependencies -->
    		<dependency>
    			<groupId>org.sakaiproject.kernel</groupId>
    			<artifactId>sakai-kernel-api</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>org.sakaiproject.kernel</groupId>
    			<artifactId>sakai-component-manager</artifactId>
    		</dependency>
    	</dependencies>
    </profile>
    Info

    Don't forget to remove (or comment out) the <activation><activeByDefault>true</activeByDefault></activation> tags from the profile which had it enabled previously.

  3. Clean and build the project

    Code Block
    mvn clean install

...