Skip to content

Commit

Permalink
Library version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Dec 18, 2024
1 parent a4eb12e commit 137c309
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 100 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ jobs:
- name: Fetch Sources
uses: actions/checkout@v4

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v4

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4
Expand Down Expand Up @@ -197,7 +193,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2024.2
uses: JetBrains/qodana-action@v2024.3
with:
args: --config,qodana-frontend.yml
artifact-name: qodana-frontend
Expand Down Expand Up @@ -245,7 +241,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2024.2
uses: JetBrains/qodana-action@v2024.3
with:
args: --config,qodana-backend.yml
artifact-name: qodana-backend
Expand Down
69 changes: 0 additions & 69 deletions .github/workflows/run-ui-tests.yml

This file was deleted.

19 changes: 5 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import org.jetbrains.intellij.platform.gradle.tasks.PrepareSandboxTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
alias(libs.plugins.kotlin) // Kotlin support
alias(libs.plugins.kotlin)
alias(libs.plugins.serialization)
alias(libs.plugins.intelliJPlatform) // IntelliJ Platform Gradle Plugin
alias(libs.plugins.changelog) // Gradle Changelog Plugin
alias(libs.plugins.qodana) // Gradle Qodana Plugin
alias(libs.plugins.intelliJPlatform)
alias(libs.plugins.changelog)
alias(libs.plugins.qodana)
}

group = providers.gradleProperty("pluginGroup").get()
Expand Down Expand Up @@ -44,17 +44,8 @@ dependencies {

jetbrainsRuntime()

bundledModule("intellij.rider")
bundledPlugins(listOf("Docker", "com.intellij.database", "rider.intellij.plugin.appender"))

// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })

// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })

instrumentationTools()
pluginVerifier()
zipSigner()
testFramework(TestFrameworkType.Bundled)
}
}
Expand Down
6 changes: 0 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ platformVersion = 2025.1-SNAPSHOT

dotnetBuildConfiguration = Release

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins =
# Example: platformBundledPlugins = com.intellij.java
platformBundledPlugins = com.intellij.diagram, Docker, com.intellij.database, rider.intellij.plugin.appender

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.11.1

Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ opentest4j = "1.3.0"
serialization = "1.7.3"

# plugins
kotlin = "2.0.21"
kotlin = "2.1.0"
changelog = "2.2.1"
intelliJPlatform = "2.1.0"
qodana = "2024.2.6"
intelliJPlatform = "2.2.1"
qodana = "2024.3.2"

[libraries]
rdGen = { group = "com.jetbrains.rd", name = "rd-gen", version.ref = "rdGen" }
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>

<RiderSDKVersion>2024.3.0</RiderSDKVersion>
<RiderSDKVersion>2024.3.2</RiderSDKVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/aspire-session-host/aspire-session-host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
<PackageReference Include="Grpc.AspNetCore" Version="2.67.0" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
<PackageReference Include="JetBrains.RdFramework" Version="2024.3.1" />
<PackageReference Include="Microsoft.Extensions.Resilience" Version="8.10.0" />
Expand Down

0 comments on commit 137c309

Please # to comment.