Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
kizeevov committed Dec 28, 2024
1 parent 76e1bdb commit 13b72e1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ kotlin {
kotlin.srcDir("src")
resources.srcDir("resources")
}
test {
kotlin.srcDir("testSrc")
resources.srcDir("src/testData")
}
}
}

Expand Down Expand Up @@ -64,6 +68,11 @@ changelog {
repositoryUrl = properties("pluginRepositoryUrl")
}

dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks {
generateLexer {
sourceFile = file("src/main/grammars/SlintLexer.flex")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pluginRepositoryUrl = https://github.com/kizeevov/slint-idea-plugin

pluginGroup = dev.slint
pluginName = SlintPlugin
pluginVersion = 1.3.0
pluginVersion = 1.4.0
platformType = IU
platformVersion = 2024.1
pluginSinceBuild = 241
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package test.kotlin
package dev.slint.ideaplugin

import com.intellij.testFramework.ParsingTestCase
import dev.slint.ideaplugin.lang.parser.SlintParserDefinition
Expand All @@ -10,7 +10,7 @@ class SimpleParsingTest : ParsingTestCase("", "slint", SlintParserDefinition())
}

override fun getTestDataPath(): String {
return "src/test/testData"
return "testData"
}

override fun includeRanges(): Boolean {
Expand Down

0 comments on commit 13b72e1

Please sign in to comment.