Skip to content

Commit

Permalink
修复依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmJos committed Oct 31, 2021
1 parent 704bf29 commit 56d7b56
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>22.0.0</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cc/carm/app/aliddns/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import cc.carm.app.aliddns.manager.ConfigManager;
import cc.carm.app.aliddns.manager.RequestManager;
import com.sun.istack.internal.NotNull;
import org.jetbrains.annotations.NotNull;

import java.util.Arrays;
import java.util.Timer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cc.carm.app.aliddns.manager;

import com.google.common.base.Charsets;
import com.sun.istack.internal.Nullable;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.configuration.file.YamlConfiguration;
import org.jetbrains.annotations.Nullable;

import java.io.*;
import java.net.URL;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cc/carm/app/aliddns/model/UpdateRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import com.aliyuncs.alidns.model.v20150109.UpdateDomainRecordResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.profile.DefaultProfile;
import com.sun.istack.internal.NotNull;
import org.bukkit.configuration.ConfigurationSection;
import org.jetbrains.annotations.NotNull;

import java.util.List;

Expand Down

0 comments on commit 56d7b56

Please sign in to comment.