Skip to content

Commit

Permalink
#33: documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jaccomoc committed Dec 4, 2024
1 parent 2da56ce commit 66281b4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ dependencies {
tasks.withType(JavaCompile) { options.deprecation = true }

java {

withJavadocJar()
withSourcesJar()
sourceCompatibility = "1.8"
Expand Down
5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ Jactl scripts compile to bytecode to take advantage of the performance capabilit
### Supports Java 8+
Compatible with Java 8 and later versions.

### Comes with an IntelliJ Plugin
There is an IntelliJ plugin that supports syntax colouring, auto-indenting, completions, find definition/usages,
running scripts, debugging scripts, and more.
See [IntelliJ Plugin](https://github.com/jaccomoc/jactl-intellij-plugin) for more details.

### Never blocks
Jactl never blocks the execution thread on which a script is running.
This is to support execution in reactive or event loop based applications.
Expand Down
8 changes: 8 additions & 0 deletions docs/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ Jactl is open sourced [here](https://github.com/jaccomoc/jactl) under the
</div>
</div>

<div class="row" >
### **IntelliJ Plugin**
Jactl has a plugin for IntelliJ that supports completions, find definition/usages, auto-indenting, running scripts,
debugging scripts, and more.
It can be found within IntelliJ under Settings -> Plugins -> Marketplace.
See [IntelliJ Plugin](https://github.com/jaccomoc/jactl-intellij-plugin) for more details.
</div>

<br/>
Jactl is intended to be integrated into Java applications where it provides a secure, locked-down, way for
customers/users to be able to customise the application behaviour.
Expand Down

0 comments on commit 66281b4

Please sign in to comment.