Skip to content

Commit

Permalink
Closes #72
Browse files Browse the repository at this point in the history
  • Loading branch information
nachg committed Jun 5, 2021
1 parent 736cf9a commit f8af6e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.api.tasks.testing.logging.TestLogEvent

version = "0.0.6"
version = "0.0.7"
group = "org.xpathqs"

plugins {
Expand Down Expand Up @@ -91,13 +91,13 @@ publishing {
}
}
scm {
connection.set("scm:git:git://github.com/nachg/xpathqs-core.git")
developerConnection.set("scm:git:ssh://github.com/nachg/xpathqs-core.git")
connection.set("scm:git:git://github.com/xpathqs/core.git")
developerConnection.set("scm:git:ssh://github.com/xpathqs/core.git")
url.set("https://xpathqs.org/")
}
}
groupId = "org.xpathqs"
artifactId = "xpathqs-core"
artifactId = "core"

from(components["java"])
}
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ Apache Maven
```xml
<dependency>
<groupId>org.xpathqs</groupId>
<artifactId>xpathqs-core</artifactId>
<version>0.0.6</version>
<artifactId>core</artifactId>
<version>0.0.7</version>
</dependency>
```

Gradle Kotlin DSL
```kotlin
implementation("org.xpathqs:xpathqs-core:0.0.6")
implementation("org.xpathqs:core:0.0.7")
```

Gradle Groovy DSL
```groovy
implementation 'org.xpathqs:xpathqs-core:0.0.6'
implementation 'org.xpathqs:core:0.0.7'
```

## Quick Example
Expand Down

0 comments on commit f8af6e1

Please sign in to comment.