Skip to content

Commit 0f66fa2

Browse files
authored
Dev (#669)
* protocol update * bump * refactor * refactor * refactor * temp version * refactor * refactor * refactor * clean * organize imports * refactor * refactor * bump * bump * refactor * validate marker auth over tcp * refactor * bump * refactor * bump * bump * backwards compatibility issues * bump * bump * bump * moved packages * refactor * better error message * bump * bump * use official lib * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * Update build.gradle.kts * bump * Update build.gradle.kts * bump * fixes #658 * refactor * remove globalscope * fixes #666
1 parent afd3b74 commit 0f66fa2

File tree

90 files changed

+1344
-4350
lines changed

Some content is hidden

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

90 files changed

+1344
-4350
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ subprojects {
7070
apply(plugin = "com.diffplug.spotless")
7171
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
7272
kotlin {
73+
targetExclude("**/generated/**")
7374
if (file("../LICENSE-HEADER.txt").exists()) {
7475
licenseHeaderFile(file("../LICENSE-HEADER.txt"))
7576
} else {

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ kotlin.code.style=official
44

55
pluginGroup = spp.jetbrains
66
pluginName = Source++
7-
projectVersion=0.4.1
7+
projectVersion=0.4.2
88
pluginSinceBuild = 202.4357
99
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1010
# See https://jb.gg/intellij-platform-builds-list for available build versions
11-
pluginVerifierIdeVersions = 2020.3.2, 2021.3.1
11+
pluginVerifierIdeVersions = 2020.3.2, 2021.3.2
1212

1313
platformType = IC
14-
ideVersion = 2021.3.1
14+
ideVersion = 2021.3.2
1515
platformDownloadSources = true
1616
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1717
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

mapper/build.gradle.kts

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +0,0 @@
1-
plugins {
2-
id("org.jetbrains.kotlin.jvm")
3-
id("maven-publish")
4-
}
5-
6-
val pluginGroup: String by project
7-
val projectVersion: String by project
8-
val slf4jVersion: String by project
9-
10-
publishing {
11-
publications {
12-
create<MavenPublication>("maven") {
13-
groupId = pluginGroup
14-
artifactId = "mapper"
15-
version = projectVersion
16-
17-
from(components["java"])
18-
}
19-
}
20-
}
21-
22-
repositories {
23-
maven(url = "https://jitpack.io") { name = "jitpack" }
24-
}
25-
26-
dependencies {
27-
implementation("com.github.sourceplusplus.protocol:protocol:$projectVersion")
28-
implementation("com.github.sh5i:git-stein:v0.5.0")
29-
implementation("org.apache.commons:commons-lang3:3.12.0")
30-
implementation("org.eclipse.jgit:org.eclipse.jgit:6.1.0.202203080745-r")
31-
implementation("com.google.guava:guava:31.1-jre")
32-
testImplementation("junit:junit:4.13.2")
33-
testImplementation("org.slf4j:slf4j-log4j12:$slf4jVersion")
34-
}
35-
36-
tasks {
37-
test {
38-
maxParallelForks = Runtime.getRuntime().availableProcessors() / 2
39-
}
40-
}

mapper/src/main/kotlin/spp/jetbrains/mapper/api/SourceMapper.kt

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

mapper/src/main/kotlin/spp/jetbrains/mapper/api/impl/SourceMapperImpl.kt

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

mapper/src/main/kotlin/spp/jetbrains/mapper/extend/SourceCodeTokenizer.kt

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

mapper/src/main/kotlin/spp/jetbrains/mapper/vcs/git/GitRepositoryMapper.kt

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

0 commit comments

Comments
 (0)