Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from DeepCodeAI/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Arvi3d authored Jun 21, 2020
2 parents 117d1c0 + 52d86f1 commit f4e4fc1
Show file tree
Hide file tree
Showing 14 changed files with 1,466 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.0.0] - 2020-06-20
- Common logic moved to java-client from jetbrains-plugin

## [1.0.0] - 2020-06-20
- Final major release for 1.x version branch before switching to 2.x

## [0.0.13] - 2020-05-27
- `Check Bundle` API function added

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# java-client
Deepcode Public API package in Java

For APIs look for `DeepCodeRestApi` public methods. For descriptions look [Rest APIs and CLI](https://deepcode.freshdesk.com/support/solutions/folders/60000321393)
For low level APIs look for `DeepCodeRestApi` public methods. For descriptions look [Rest APIs and CLI](https://deepcode.freshdesk.com/support/solutions/folders/60000321393)

For high-level APIs look inside `ai.deepcode.javaclient.core` package.
Here common logic for any Java made IDE presented as `abstract` classes that need to be instantiated and finalised with platform specific code.
See [jetbrains-plugin](https://github.com/DeepCodeAI/jetbrains-plugin) for usage example.

Architect overview of common logic: Inversion of Control (Dependency Injection pattern) is implemented through constructor parameters injection.

## Build the jar

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
jcenter()
}

version '0.0.13'
version '2.0.0'
sourceCompatibility = 1.8

dependencies {
Expand Down
Loading

0 comments on commit f4e4fc1

Please sign in to comment.