Skip to content

Commit

Permalink
SAK-30593 Introduce a migration program to convert user favorites (sa…
Browse files Browse the repository at this point in the history
  • Loading branch information
marktriggs authored and ottenhoff committed May 12, 2016
1 parent 85dd7c6 commit 4ea1dcc
Show file tree
Hide file tree
Showing 3 changed files with 582 additions and 0 deletions.
1 change: 1 addition & 0 deletions user/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<module>user-tool/tool</module>
<module>user-tool-admin-prefs/admin-prefs</module>
<module>user-tool-prefs/tool</module>
<module>user-util</module>
</modules>
</profile>
</profiles>
Expand Down
27 changes: 27 additions & 0 deletions user/user-util/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>user</artifactId>
<groupId>org.sakaiproject.user</groupId>
<version>12-SNAPSHOT</version><!-- ProjectVersion -->
<relativePath>../pom.xml</relativePath>
</parent>
<name>user-util</name>
<groupId>org.sakaiproject.user.util</groupId>
<artifactId>user-util</artifactId>
<packaging>jar</packaging>
<properties>
<deploy.target>shared</deploy.target>
</properties>
<dependencies>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-kernel-api</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 4ea1dcc

Please sign in to comment.