Skip to content

Commit ae1639d

Browse files
author
William Welling
authored
Weaver upgrade (#107)
* dev deployment updates * remove unused plugin * correct role hierarchy
1 parent 499ef63 commit ae1639d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>edu.tamu</groupId>
77
<artifactId>status-system</artifactId>
8-
<version>1.4.4</version>
8+
<version>1.5.3-RC1</version>
99

1010
<name>Library-Service-Status-System</name>
1111

@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>edu.tamu.weaver</groupId>
1616
<artifactId>webservice-parent</artifactId>
17-
<version>2.1.1-RC11</version>
17+
<version>2.1.1-RC15</version>
1818
</parent>
1919

2020
<properties>

src/main/java/edu/tamu/app/config/AppWebSecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected String buildRoleHierarchy() {
4949
for (int i = 0; i <= roles.length - 2; i++) {
5050
roleHeirarchy.append(roles[i] + " > " + roles[i + 1]);
5151
if (i < roles.length - 2) {
52-
roleHeirarchy.append(" ");
52+
roleHeirarchy.append("\n");
5353
}
5454
}
5555
return roleHeirarchy.toString();

0 commit comments

Comments
 (0)