Skip to content

Commit

Permalink
SAK-40810 - Rubrics doesn't start due to Spring dependencies upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Pellicer committed Oct 23, 2018
1 parent ec11cca commit 52aa1cc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion rubrics/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
<version>2.6.7.RELEASE</version>
<version>${spring.data.rest.webmvc.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
Expand Down
4 changes: 4 additions & 0 deletions rubrics/impl/src/main/webapp/WEB-INF/components.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@
</list>
</property>
</bean>

<bean id="org.springframework.hateoas.hal.HalConfiguration.rubrics"
class="org.springframework.hateoas.hal.HalConfiguration" />

</beans>
1 change: 1 addition & 0 deletions rubrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.data.rest.webmvc.version>2.6.16.RELEASE</spring.data.rest.webmvc.version>
</properties>

<dependencyManagement>
Expand Down
13 changes: 7 additions & 6 deletions rubrics/tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>org.sakaiproject.rubrics.RubricsApplication</start-class>
<rest.assured.version>2.9.0</rest.assured.version>
<spring.boot.version>1.5.10.RELEASE</spring.boot.version>
<rest.assured.version>3.1.1</rest.assured.version>
<spring.boot.version>1.5.17.RELEASE</spring.boot.version>
<thymeleaf.version>3.0.10.RELEASE</thymeleaf.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -83,7 +84,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
<version>2.6.7.RELEASE</version>
<version>${spring.data.rest.webmvc.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
Expand Down Expand Up @@ -111,12 +112,12 @@
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.9.RELEASE</version>
<version>${thymeleaf.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring4</artifactId>
<version>3.0.9.RELEASE</version>
<version>${thymeleaf.version}</version>
</dependency>
<!-- Spring AOP -->
<dependency>
Expand Down Expand Up @@ -159,7 +160,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest.assured.version}</version>
<scope>test</scope>
Expand Down

0 comments on commit 52aa1cc

Please sign in to comment.