Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jetbrains-plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JastAdd
jetbrains-plugin
Commits
0cc1822c
Commit
0cc1822c
authored
1 year ago
by
Johannes Mey
Browse files
Options
Downloads
Plain Diff
Merge branch 'chore/support-for-intellij-2023.3' into 'develop'
Add support for version 2023.3 See merge request
!20
parents
80149eab
2c9c1698
Branches
Branches containing commit
Tags
v0.3.3
Tags containing commit
1 merge request
!20
Add support for version 2023.3
Pipeline
#18410
passed
1 year ago
Stage: test
Stage: jar
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+7
-1
7 additions, 1 deletion
CHANGELOG.md
build.gradle.kts
+7
-3
7 additions, 3 deletions
build.gradle.kts
gradle.properties
+3
-3
3 additions, 3 deletions
gradle.properties
with
17 additions
and
7 deletions
CHANGELOG.md
+
7
−
1
View file @
0cc1822c
...
...
@@ -12,6 +12,11 @@
### Fixed
## [0.3.3] - 2023-12-29
### Added
-
Support for IntelliJ IDEA 2023.3.
## [0.3.2] - 2023-09-13
### Added
...
...
@@ -51,7 +56,8 @@
### Removed
-
Support for IntelliJ IDEA 2020.2.4. Minimal version now is 2021.1.1.
[
Unreleased
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//compare/v0.3.2...HEAD
[
Unreleased
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//compare/v0.3.3...HEAD
[
0.3.3
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//compare/v0.3.2...v0.3.3
[
0.3.2
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//compare/v0.3.1...v0.3.2
[
0.3.1
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//compare/v0.2.0...v0.3.1
[
0.2.0
]:
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin//commits/v0.2.0
This diff is collapsed.
Click to expand it.
build.gradle.kts
+
7
−
3
View file @
0cc1822c
...
...
@@ -13,9 +13,9 @@ plugins {
// Java support
id
(
"java"
)
// Kotlin support
id
(
"org.jetbrains.kotlin.jvm"
)
version
"1.
8.2
0"
id
(
"org.jetbrains.kotlin.jvm"
)
version
"1.
9.
0"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id
(
"org.jetbrains.intellij"
)
version
"1.1
3.3
"
id
(
"org.jetbrains.intellij"
)
version
"1.1
5.0
"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id
(
"org.jetbrains.changelog"
)
version
"2.0.0"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
...
...
@@ -151,7 +151,11 @@ tasks {
)
// Get the latest available change notes from the changelog file
changeNotes
.
set
(
provider
{
changelog
.
renderItem
(
changelog
.
get
(
properties
(
"pluginVersion"
)),
Changelog
.
OutputType
.
HTML
)
})
changeNotes
.
set
(
provider
{
changelog
.
renderItem
(
changelog
.
get
(
properties
(
"pluginVersion"
)),
Changelog
.
OutputType
.
HTML
)
}
)
}
jar
{
...
...
This diff is collapsed.
Click to expand it.
gradle.properties
+
3
−
3
View file @
0cc1822c
...
...
@@ -3,20 +3,20 @@
pluginGroup
=
org.jastadd
pluginName
=
JastAdd
pluginVersion
=
0.3.
2
pluginVersion
=
0.3.
3
pluginRepositoryUrl
=
https://git-st.inf.tu-dresden.de/jastadd/jetbrains-plugin/
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild
=
223
pluginUntilBuild
=
23
2
.*
pluginUntilBuild
=
23
3
.*
## Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
## See https://jb.gg/intellij-platform-builds-list for available build versions.
#pluginVerifierIdeVersions = 2022.2.4, 2022.3.1, 2023.1.2
platformType
=
IC
platformVersion
=
2023.
2.1
platformVersion
=
2023.
3.2
platformDownloadSources
=
true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment