forked from microsoft/azure-tools-for-java
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #630 from JetBrains/223-mb-initial
Compatibility with Rider 2022.3 snapshot
- Loading branch information
Showing
28 changed files
with
182 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:11.0.3-jdk-slim-stretch | ||
FROM openjdk:17.0.1-jdk-slim | ||
LABEL maintainer="Sergey Dubov <[email protected]>" | ||
|
||
RUN mkdir -p /usr/share/man/man1 | ||
|
@@ -12,6 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
gpg \ | ||
dirmngr \ | ||
curl \ | ||
gpg-agent \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install dotnet-sdk 3.1. and 5.0 | ||
|
@@ -25,14 +26,15 @@ RUN wget -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | |
RUN apt-get update \ | ||
&& apt-get update \ | ||
&& apt-get install -y dotnet-sdk-3.1 \ | ||
&& apt-get install -y dotnet-sdk-5.0 | ||
&& apt-get install -y dotnet-sdk-5.0 \ | ||
&& apt-get install -y dotnet-sdk-6.0 | ||
|
||
# Install Mono | ||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \ | ||
&& echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | tee /etc/apt/sources.list.d/mono-official-stable.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
mono-complete \ | ||
referenceassemblies-pcl \ | ||
msbuild \ | ||
&& apt-get clean all | ||
&& echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | tee /etc/apt/sources.list.d/mono-official-stable.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
mono-complete \ | ||
referenceassemblies-pcl \ | ||
msbuild \ | ||
&& apt-get clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:11.0.3-jdk-slim-stretch | ||
FROM openjdk:17.0.1-jdk-slim | ||
LABEL maintainer="Sergey Dubov <[email protected]>" | ||
|
||
ENV LOCAL_ENV_RUN=true | ||
|
@@ -14,9 +14,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
gpg \ | ||
dirmngr \ | ||
curl \ | ||
gpg-agent \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install dotnet-sdk-5.0 | ||
# Install dotnet-sdks | ||
RUN wget -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg \ | ||
&& mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ \ | ||
&& wget https://packages.microsoft.com/config/debian/9/prod.list \ | ||
|
@@ -32,10 +33,10 @@ RUN apt-get update \ | |
|
||
# Install Mono | ||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \ | ||
&& echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | tee /etc/apt/sources.list.d/mono-official-stable.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
mono-complete \ | ||
referenceassemblies-pcl \ | ||
msbuild \ | ||
&& apt-get clean all | ||
&& echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | tee /etc/apt/sources.list.d/mono-official-stable.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
mono-complete \ | ||
referenceassemblies-pcl \ | ||
msbuild \ | ||
&& apt-get clean all |
27 changes: 14 additions & 13 deletions
27
PluginsAndFeatures/azure-toolkit-for-intellij/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
buildNumber=3.50.0.9999-2022.2 | ||
buildNumber=3.50.0.9999-2022.3 | ||
|
||
javaVersion=11 | ||
javaVersion=17 | ||
org.gradle.jvmargs='-Duser.language=en' | ||
sources=false | ||
|
||
intellij_version=IC-222.3153-EAP-CANDIDATE-SNAPSHOT | ||
#rider_version=RD-2022.2-EAP9-SNAPSHOT | ||
rider_version=RD-2022.2 | ||
intellij_version=IC-223.4884.69-EAP-SNAPSHOT | ||
rider_version=RD-2022.3-EAP1-SNAPSHOT | ||
#rider_version=RD-2022.3 | ||
build_common_code_with=rider | ||
intellij_plugin_name=azure-toolkit-for-intellij | ||
rider_plugin_name=azure-toolkit-for-rider | ||
rider_backend_build_configuration=Debug | ||
|
||
dep_plugins=org.intellij.scala:2022.2.2 | ||
dep_plugins=org.intellij.scala:2022.3.1 | ||
applicationinsights.key=57cc111a-36a8-44b3-b044-25d293b8b77c | ||
|
||
updateVersionRange=false | ||
patchPluginXmlSinceBuild=222 | ||
patchPluginXmlSinceBuild=223 | ||
|
||
kotlin_version=1.6.21 | ||
kotlin_version=1.7.0 | ||
# note: jackson_kotlin_version also needs updating in Utils\azuretools-core\pom.xml | ||
jackson_kotlin_version=2.13.2 | ||
gradle_plugin_version=1.7.0 | ||
jackson_kotlin_version=2.13.4 | ||
gradle_plugin_version=1.9.0 | ||
undercouch_version=4.0.4 | ||
web_socket_version=1.5.1 | ||
retrofit_version=2.9.0 | ||
assertj_version=3.15.0 | ||
lombok_version=1.18.8 | ||
aspectj_version=5.3.0 | ||
lombok_version=1.18.24 | ||
aspectj_version=6.5.1 | ||
aspectj_tools_version=1.9.9.1 | ||
kotlin.stdlib.default.dependency=false | ||
|
||
rd_version=2022.2.5 | ||
rd_version=2022.3.2 | ||
|
||
rider_test_local_env_run=true |
2 changes: 1 addition & 1 deletion
2
PluginsAndFeatures/azure-toolkit-for-intellij/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-6.8.2-all.zip | ||
distributionUrl=https\://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-7.3-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.