Skip to content

Commit 7548fed

Browse files
committed
fix builder error
1 parent e9a892f commit 7548fed

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

dss-user-manager/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -74,23 +74,11 @@
7474
<artifactId>maven-deploy-plugin</artifactId>
7575
</plugin>
7676

77-
<plugin>
78-
<groupId>net.alchim31.maven</groupId>
79-
<artifactId>scala-maven-plugin</artifactId>
80-
</plugin>
8177
<plugin>
8278
<groupId>org.apache.maven.plugins</groupId>
8379
<artifactId>maven-jar-plugin</artifactId>
8480
</plugin>
8581
</plugins>
86-
<resources>
87-
<resource>
88-
<directory>src/main/java</directory>
89-
<includes>
90-
<include>**/*.xml</include>
91-
</includes>
92-
</resource>
93-
</resources>
9482
</build>
9583

9684
</project>

dss-user-manager/src/main/java/com/webank/wedatasphpere/dss/user/service/AbsCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public String renew(AuthorizationBody body) {
3131
public String undoAuthorization(AuthorizationBody body) { return Command.SUCCESS; }
3232

3333
@Override
34-
public String authorization(AuthorizationBody body) throws IOException,DocumentException { return Command.SUCCESS; }
34+
public String authorization(AuthorizationBody body) throws IOException,DocumentException, Exception { return Command.SUCCESS; }
3535
public String toMessage(String msg) {
3636
return this.getClass().getSimpleName() + "模块开始执行:"+ msg;
3737
}

0 commit comments

Comments
 (0)