Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions at_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The SDK currently depends on the following
## Example Usage

The command line classes under
[src/main/java/org/atsign/client/cli](src/main/java/org/atsign/client/cli)
[src/main/java/org/atsign/client/cli](src/main/java/org/atsign/client/impl/cli)
serve as simple examples of how to instantiate an AtClient instance and invoke its
interface.

Expand Down Expand Up @@ -135,11 +135,11 @@ mvn exec:java -Dexec.mainClass=org.atsign.client.cli.Delete \

### Register

The utility **org.atsign.client.cli.Register** can be used to perform
The utility **org.atsign.client.cli.register.Register** can be used to perform
registration operations.

```shell
mvn exec:java -Dexec.mainClass=org.atsign.client.cli.Register -Dexec.args="--help"
mvn exec:java -Dexec.mainClass=org.atsign.client.cli.register.Register -Dexec.args="--help"
```

When using the SUPER_API Key to register an atsign, the following sequence of
Expand Down
21 changes: 21 additions & 0 deletions at_client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<properties>
<config.spotless>../config/java-format.xml</config.spotless>
<config.checkstyle>../config/checkstyle.xml</config.checkstyle>

<!-- lower for now because cli and register code has no tests -->
<coverage.line>0.77</coverage.line>
<coverage.branch>0.7</coverage.branch>

</properties>

<build>
Expand Down Expand Up @@ -85,6 +90,11 @@
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
Expand Down Expand Up @@ -120,6 +130,11 @@
<artifactId>bcprov-jdk15to18</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>

<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
Expand All @@ -136,6 +151,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down
Loading
Loading