Skip to content

Commit

Permalink
Merge pull request #13 from Cullen-Shannon/final-config-updates
Browse files Browse the repository at this point in the history
Config updates
  • Loading branch information
Cullen-Shannon authored Oct 11, 2024
2 parents 655c724 + 7a975d0 commit a0c4d43
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
## [Unreleased]

## [1.0.0] - 2024-10-09
### Added
### 1.0.0
- Initial project release
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ koverReport {
}

tasks {
buildSearchableOptions {
enabled = false
}

wrapper {
gradleVersion = properties("gradleVersion").get()
}
Expand Down Expand Up @@ -109,6 +113,12 @@ tasks {
password = environment("PRIVATE_KEY_PASSWORD")
}

// This is a gradle task to run the "plugin verifier" when publishing to the Jetbrains Marketplace locally.
// Checking against Giraffe, Hedgehog, Iguana, Jellyfish, Koala, can add more versions here as needed
runPluginVerifier {
ideVersions.set(listOf("231.9392.1", "232.10227.8","233.14808.21","241.15989.150"))
}

runIde {
// Absolute path to installed target 3.5 Android Studio to use as
// IDE Development Instance (the "Contents" directory is macOS specific):
Expand Down
12 changes: 7 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html

pluginGroup = org.jetbrains.plugins.template
pluginName = IntelliJ Platform Plugin Template
pluginName = Repo Depot
pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template
# SemVer format -> https://semver.org
pluginVersion = 1.13.0
pluginVersion = 1.0.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# https://blog.jetbrains.com/platform/2022/08/intellij-project-migrates-to-java-17/
pluginSinceBuild = 223
pluginUntilBuild = 241.*

# Supporting all versions for now -- we can re-examine this if needed (if breaking changes seem to surface over time)
pluginUntilBuild = 999.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion = 232.10300.40
platformVersion = AI-223.8836.35.2231.10671973

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins = android
platformPlugins = com.intellij.java

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.6
Expand Down
10 changes: 3 additions & 7 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
<idea-plugin>
<id>com.cullen.graham.repodepot</id>
<name>Repo Depot</name>
<vendor>Cullen Graham</vendor>
<vendor>Repo Depot Team</vendor>

<depends>com.intellij.modules.platform</depends>

<depends>org.jetbrains.android</depends>

<!-- Removed this line since it threw an error-->
<!-- <depends>com.intellij.modules.androidstudio</depends>-->
<!-- This should mark the plugin as being compatible with IntelliJ IDEA & Android Studio per https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html-->
<depends>com.intellij.modules.java</depends>

<extensions defaultExtensionNs="com.intellij">
<applicationConfigurable
Expand Down
File renamed without changes

0 comments on commit a0c4d43

Please sign in to comment.