Skip to content

Commit 70be128

Browse files
authored
Merge pull request #139 from couchbaselabs/cb_lite_main
Adding Couchbase Lite Support into the plugin
2 parents f8f641b + faad206 commit 70be128

File tree

221 files changed

+14295
-3437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+14295
-3437
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build/
66

77

88
### IntelliJ IDEA ###
9+
.idea/sonarlint/
910
.idea/gradle.xml
1011
.idea/modules.xml
1112
.idea/jarRepositories.xml

.idea/gradle.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.run/Run IDE with Plugin.run.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,20 @@ repositories {
1616
mavenLocal()
1717
mavenCentral()
1818
gradlePluginPortal()
19+
maven { url = uri("https://mobile.maven.couchbase.com/maven2/dev/") }
1920
}
2021

2122
dependencies {
2223
implementation("org.projectlombok:lombok:1.18.28")
24+
implementation(files("lib/couchbase-lite-java-ee-3.1.3-7-release.jar"))
2325
annotationProcessor("org.projectlombok:lombok:1.18.30")
2426
compileOnly("org.projectlombok:lombok:1.18.30")
2527
implementation("com.couchbase.client:java-client:3.4.11")
2628
implementation("org.slf4j:slf4j-simple:2.0.7")
2729
implementation("org.eclipse.jgit:org.eclipse.jgit:6.5.0.202303070854-r")
2830
implementation("com.google.code.gson:gson:2.10.1")
2931

32+
3033
implementation("com.google.code.gson:gson:2.10.1")
3134

3235
implementation("com.opencsv:opencsv:5.5.2") // OpenCSV
@@ -51,7 +54,6 @@ dependencies {
5154
implementation("com.vladsch.flexmark:flexmark:0.64.8")
5255
implementation("com.vladsch.flexmark:flexmark-ext-tables:0.64.8")
5356
implementation("com.vladsch.flexmark:flexmark-html2md-converter:0.64.8")
54-
5557
}
5658

5759
// Configure Gradle IntelliJ Plugin
6.98 MB
Binary file not shown.

0 commit comments

Comments
 (0)