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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JastAdd
jetbrains-plugin
Commits
7f8ed123
Commit
7f8ed123
authored
2 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
update versions
parent
306c45f6
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!18
Chore/support for intellij 2023.1
Pipeline
#16412
failed
2 years ago
Stage: test
Stage: jar
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
build.gradle.kts
+10
-28
10 additions, 28 deletions
build.gradle.kts
detekt-config.yml
+0
-8
0 additions, 8 deletions
detekt-config.yml
gradle.properties
+4
-4
4 additions, 4 deletions
gradle.properties
with
14 additions
and
40 deletions
build.gradle.kts
+
10
−
28
View file @
7f8ed123
...
...
@@ -12,16 +12,16 @@ plugins {
// Java support
id
(
"java"
)
// Kotlin support
id
(
"org.jetbrains.kotlin.jvm"
)
version
"1.
5.1
0"
id
(
"org.jetbrains.kotlin.jvm"
)
version
"1.
8.2
0"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id
(
"org.jetbrains.intellij"
)
version
"1.
0
"
id
(
"org.jetbrains.intellij"
)
version
"1.
13.3
"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id
(
"org.jetbrains.changelog"
)
version
"
1.1.2
"
id
(
"org.jetbrains.changelog"
)
version
"
2.0.0
"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
id
(
"io.gitlab.arturbosch.detekt"
)
version
"1.
18.1
"
id
(
"io.gitlab.arturbosch.detekt"
)
version
"1.
23.0
"
// ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle
id
(
"org.jlleitschuh.gradle.ktlint"
)
version
"1
0.2.0
"
id
(
"org.jlleitschuh.gradle.ktlint"
)
version
"1
1.3.2
"
// grammrkit - read more: https://plugins.gradle.org/plugin/org.jetbrains.grammarkit
id
(
"org.jetbrains.grammarkit"
)
version
"2022.3.1"
}
...
...
@@ -32,9 +32,7 @@ version = properties("pluginVersion")
repositories
{
mavenCentral
()
}
dependencies
{
detektPlugins
(
"io.gitlab.arturbosch.detekt:detekt-formatting:1.18.1"
)
}
java
{
sourceCompatibility
=
JavaVersion
.
VERSION_1_8
targetCompatibility
=
JavaVersion
.
VERSION_1_8
...
...
@@ -68,21 +66,14 @@ sourceSets {
// Configure gradle-changelog-plugin plugin.
// Read more: https://github.com/JetBrains/gradle-changelog-plugin
changelog
{
version
=
properties
(
"pluginVersion"
)
groups
=
listOf
(
"Added"
,
"Changed"
,
"Deprecated"
,
"Removed"
,
"Fixed"
)
version
.
set
(
properties
(
"pluginVersion"
)
)
groups
.
set
(
listOf
(
"Added"
,
"Changed"
,
"Deprecated"
,
"Removed"
,
"Fixed"
)
)
}
// Configure detekt plugin.
// Read more: https://detekt.github.io/detekt/kotlindsl.html
detekt
{
config
=
files
(
"./detekt-config.yml"
)
buildUponDefaultConfig
=
true
reports
{
html
.
enabled
=
true
xml
.
enabled
=
false
txt
.
enabled
=
false
}
source
.
from
(
files
(
"build.gradle.kts"
))
}
tasks
{
...
...
@@ -161,15 +152,6 @@ tasks {
changeNotes
.
set
(
provider
{
changelog
.
getLatest
().
toHTML
()
})
}
runPluginVerifier
{
ideVersions
.
set
(
properties
(
"pluginVerifierIdeVersions"
).
split
(
','
).
map
(
String
::
trim
).
filter
(
String
::
isNotEmpty
))
}
buildSearchableOptions
{
// otherwise the build fails
enabled
=
false
}
publishPlugin
{
dependsOn
(
"patchChangelog"
)
token
.
set
(
System
.
getenv
(
"PUBLISH_TOKEN"
))
...
...
This diff is collapsed.
Click to expand it.
detekt-config.yml
deleted
100644 → 0
+
0
−
8
View file @
306c45f6
# Default detekt configuration:
# https://github.com/detekt/detekt/blob/master/detekt-core/src/main/resources/default-detekt-config.yml
formatting
:
Indentation
:
continuationIndentSize
:
8
ParameterListWrapping
:
indentSize
:
8
This diff is collapsed.
Click to expand it.
gradle.properties
+
4
−
4
View file @
7f8ed123
...
...
@@ -7,12 +7,12 @@ pluginVersion = 0.3.1
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild
=
22
2
pluginSinceBuild
=
22
3
pluginUntilBuild
=
231.*
# 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
#
# 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
=
2022.3.1
...
...
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