From 92f3bdaae4b24bcc770787f609e2adfd48544dea Mon Sep 17 00:00:00 2001
From: GrahamParvinkarimi
Date: Wed, 16 Oct 2024 16:40:04 -0400
Subject: [PATCH] -Updated README to resolve image formatting
---
build.gradle.kts | 13 -------------
src/main/resources/META-INF/plugin.xml | 14 ++++++++++++++
2 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index c749f22..bdfcf0e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -71,19 +71,6 @@ tasks {
sinceBuild = properties("pluginSinceBuild")
untilBuild = properties("pluginUntilBuild")
- // Extract the section from README.md and provide for the plugin's manifest
- pluginDescription = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map {
- val start = ""
- val end = ""
-
- with (it.lines()) {
- if (!containsAll(listOf(start, end))) {
- throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
- }
- subList(indexOf(start) + 1, indexOf(end)).joinToString("\n").let(::markdownToHTML)
- }
- }
-
val changelog = project.changelog // local variable for configuration cache compatibility
// Get the latest available change notes from the changelog file
changeNotes = properties("pluginVersion").map { pluginVersion ->
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index f8c74d5..037c34a 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -4,6 +4,20 @@
Repo Depot
Repo Depot Team
+ Repo Depot is a simple JetBrains plugin that lets teams share common bookmarks through source control and open them through their IDE.
+
+
+ - Bookmarks are available under Tools
+ - Bookmarks are maintained in the Settings UI
+ - Bookmarks can be nested and organized within the Settings menu
+ - The menu configuration persists in a root-level file called
repo_depot.json
. If the file doesn't exist, it'll be created automatically
+
+
+ Note:
+ Teams may want to exclude repot_depot.json
from their CI/CD processes to quickly change their bookmarks via pull requests, without triggering long-running build validation processes.
+ ]]>
+
com.intellij.modules.java