Skip to content

Commit 18ddddc

Browse files
CopilotMte90
andcommitted
Fix build error by adding version directly to plugin.xml
- Remove patchPluginXml task that was causing compilation error - Add version element directly in plugin.xml (set to 0.0.1) - This resolves the "Unresolved reference 'set'" build error Co-authored-by: Mte90 <403283+Mte90@users.noreply.github.com>
1 parent fdd3a0d commit 18ddddc

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

ide-plugins/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,4 @@ tasks {
3535
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
3636
}
3737
}
38-
39-
patchPluginXml {
40-
version.set(project.version.toString())
41-
}
4238
}

ide-plugins/src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<idea-plugin>
22
<id>com.picocode.rag-assistant</id>
33
<name>PicoCode RAG Assistant</name>
4+
<version>0.0.1</version>
45
<vendor>PicoCode</vendor>
56

67
<description><![CDATA[

0 commit comments

Comments
 (0)