Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: shuoros/JTerminal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: shuoros/JTerminal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 13, 2021

  1. [UPDATE] README.md

    shuoros authored Nov 13, 2021
    Copy the full SHA
    911c69b View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 README.md
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -130,58 +130,58 @@ You can use **JTerminal** with any project management tool:
<dependency>
<groupId>io.github.shuoros</groupId>
<artifactId>JTerminal</artifactId>
<version>1.0.0</version>
<version>1.0.2</version>
</dependency>
```

### Gradle

```gradle
// https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
implementation group: 'io.github.shuoros', name: 'JTerminal', version: '1.0.0'
implementation group: 'io.github.shuoros', name: 'JTerminal', version: '1.0.2'
```
Or

```gradle
// https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
implementation 'io.github.shuoros:JTerminal:1.0.0'
implementation 'io.github.shuoros:JTerminal:1.0.2'
```

And in **Kotlin**

```gradle
// https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
implementation("io.github.shuoros:JTerminal:1.0.0")
implementation("io.github.shuoros:JTerminal:1.0.2")
```

### SBT

```sbt
// https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
libraryDependencies += "io.github.shuoros" % "JTerminal" % "1.0.0"
libraryDependencies += "io.github.shuoros" % "JTerminal" % "1.0.2"
```

### Ivy

```xml
<!-- https://mvnrepository.com/artifact/io.github.shuoros/JTerminal -->
<dependency org="io.github.shuoros" name="JTerminal" rev="1.0.0"/>
<dependency org="io.github.shuoros" name="JTerminal" rev="1.0.2"/>
```

### Grape

```java
// https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
@Grapes(
@Grab(group='io.github.shuoros', module='JTerminal', version='1.0.0')
@Grab(group='io.github.shuoros', module='JTerminal', version='1.0.2')
)
```

### Leiningen

```clj
;; https://mvnrepository.com/artifact/io.github.shuoros/JTerminal
[io.github.shuoros/JTerminal "1.0.0"]
[io.github.shuoros/JTerminal "1.0.2"]
```

## Authors