Skip to content

Commit

Permalink
doc: update .github
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYixun committed Feb 21, 2023
1 parent c2d00e2 commit 48e757c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Publish to Maven Central Repo
uses: samuelmeuli/action-maven-publish@v1
with:
maven_args: "-Dmaven.test.skip=true -Dplatform=${{ matrix.platform }}"
maven_args: -Dplatform=${{ matrix.platform }}
gpg_private_key: ${{ secrets.GPG_SECRET }}
gpg_passphrase: ${{ secrets.GPG_PASSWORD }}
nexus_username: ${{ secrets.OSSRH_USER }}
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/org/cloud/sonic/vision/tool/Logger.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
import java.text.SimpleDateFormat;
import java.util.Date;

/**
* Logger
*/
public class Logger {
private SimpleDateFormat formatter;
private boolean isShowLog;
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/org/cloud/sonic/vision/cv/CVTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import org.cloud.sonic.vision.models.FindResult;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.io.File;

@Ignore
public class CVTest {
File tem = new File("tem.png");
File before = new File("test.png");
Expand Down

0 comments on commit 48e757c

Please sign in to comment.