-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV2-2533: Download and install enterprise plugin (#509)
- Loading branch information
Assaf Sapir
authored
Apr 20, 2023
1 parent
1bdb009
commit 7a0bd09
Showing
260 changed files
with
1,671 additions
and
995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | ||
|
||
plugins { | ||
id 'java' | ||
id "org.jetbrains.kotlin.jvm" version "1.4.32" | ||
id 'org.jetbrains.intellij' version '1.2.0' | ||
id 'org.jlleitschuh.gradle.ktlint' version "10.0.0" | ||
id 'org.jlleitschuh.gradle.ktlint-idea' version "10.0.0" | ||
id "com.github.sherter.google-java-format" version "0.9" | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
group 'com.tabnineCommon' | ||
version project.hasProperty('externalVersion') ? project.externalVersion : '1.0.6' | ||
|
||
sourceCompatibility = 9 | ||
targetCompatibility = 9 | ||
|
||
tasks.withType(KotlinCompile).configureEach { | ||
kotlinOptions { | ||
jvmTarget = "9" | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
apply plugin: "org.jlleitschuh.gradle.ktlint-idea" | ||
|
||
dependencies { | ||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.32") | ||
implementation 'org.jetbrains:annotations:24.0.0' | ||
|
||
testImplementation "org.hamcrest:hamcrest:2.2" | ||
testImplementation 'org.mockito:mockito-core:4.8.0' | ||
testImplementation 'org.mockito:mockito-inline:4.8.0' | ||
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0' | ||
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.0' | ||
testImplementation "io.mockk:mockk:1.11.0" | ||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0' | ||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0' | ||
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.9.0' | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
reports { | ||
junitXml.enabled = true | ||
} | ||
} | ||
|
||
intellij { | ||
version = '2019.3' | ||
type = 'IC' | ||
updateSinceUntilBuild = false | ||
} | ||
|
||
def channelName = project.hasProperty('channel') ? project.channel : 'alpha' | ||
|
||
sourceSets { | ||
main { | ||
java.srcDirs += "channels/${channelName}" | ||
} | ||
} | ||
|
||
tasks { | ||
compileKotlin { | ||
dependsOn(ktlintFormat) | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...nels/alpha/com/tabnine/config/Config.java → ...lpha/com/tabnineCommon/config/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
channels/beta/com/tabnine/config/Config.java → ...beta/com/tabnineCommon/config/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...production/com/tabnine/config/Config.java → ...tion/com/tabnineCommon/config/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...elf_hosted/com/tabnine/config/Config.java → ...sted/com/tabnineCommon/config/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...va/com/tabnine/TabnineIgnoreFileType.java → .../tabnineCommon/TabnineIgnoreFileType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../tabnine/TabnineProjectModelFileType.java → ...neCommon/TabnineProjectModelFileType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...java/com/tabnine/TabnineRootFileType.java → ...om/tabnineCommon/TabnineRootFileType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 8 additions & 5 deletions
13
...ain/java/com/tabnine/UninstallListener.kt → ...va/com/tabnineCommon/UninstallListener.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...e/balloon/FirstSuggestionHintTooltip.java → ...n/balloon/FirstSuggestionHintTooltip.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...m/tabnine/balloon/GotItTooltipAction.java → ...ineCommon/balloon/GotItTooltipAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...om/tabnine/binary/BinaryProcessGateway.kt → ...nineCommon/binary/BinaryProcessGateway.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../binary/BinaryProcessGatewayProvider.java → .../binary/BinaryProcessGatewayProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...abnine/binary/BinaryProcessRequester.java → ...Common/binary/BinaryProcessRequester.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ne/binary/BinaryProcessRequesterImpl.java → ...on/binary/BinaryProcessRequesterImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...inary/BinaryProcessRequesterProvider.java → ...inary/BinaryProcessRequesterProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ava/com/tabnine/binary/BinaryRequest.java → ...m/tabnineCommon/binary/BinaryRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...m/tabnine/binary/BinaryRequestFacade.java → ...ineCommon/binary/BinaryRequestFacade.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...va/com/tabnine/binary/BinaryResponse.java → .../tabnineCommon/binary/BinaryResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.tabnine.binary; | ||
package com.tabnineCommon.binary; | ||
|
||
public interface BinaryResponse {} |
Oops, something went wrong.