Skip to content

Commit

Permalink
Weaver upgrade (#107)
Browse files Browse the repository at this point in the history
* dev deployment updates

* remove unused plugin

* correct role hierarchy
  • Loading branch information
William Welling committed Sep 20, 2022
1 parent 499ef63 commit ae1639d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>edu.tamu</groupId>
<artifactId>status-system</artifactId>
<version>1.4.4</version>
<version>1.5.3-RC1</version>

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

Expand All @@ -14,7 +14,7 @@
<parent>
<groupId>edu.tamu.weaver</groupId>
<artifactId>webservice-parent</artifactId>
<version>2.1.1-RC11</version>
<version>2.1.1-RC15</version>
</parent>

<properties>
Expand Down
Expand Up @@ -49,7 +49,7 @@ protected String buildRoleHierarchy() {
for (int i = 0; i <= roles.length - 2; i++) {
roleHeirarchy.append(roles[i] + " > " + roles[i + 1]);
if (i < roles.length - 2) {
roleHeirarchy.append(" ");
roleHeirarchy.append("\n");
}
}
return roleHeirarchy.toString();
Expand Down

0 comments on commit ae1639d

Please sign in to comment.