Skip to content

Commit bf40b6c

Browse files
Hanxiao LiuHanxiao Liu
authored andcommitted
Add up missing utils changes
1 parent 0ab474a commit bf40b6c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

Utils/azure-toolkit-ide-hdinsight-libs/hdinsight-node-common/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifact.name>${project.artifactId}-${project.version}.jar</artifact.name>
1111
<hdinsight.htmlcopy.enabled>true</hdinsight.htmlcopy.enabled>
1212
<project.build.encoding>UTF-8</project.build.encoding>
13-
<scala.version>2.12.10</scala.version>
13+
<scala.version>2.12.18</scala.version>
1414
<spark.version>3.4.0</spark.version>
1515
<checkstyle.skip>true</checkstyle.skip>
1616
</properties>
@@ -108,7 +108,7 @@
108108
<plugin>
109109
<groupId>net.alchim31.maven</groupId>
110110
<artifactId>scala-maven-plugin</artifactId>
111-
<version>4.8.0</version>
111+
<version>4.8.1</version>
112112
<executions>
113113
<execution>
114114
<goals>
@@ -147,7 +147,7 @@
147147
<plugin>
148148
<groupId>org.apache.maven.plugins</groupId>
149149
<artifactId>maven-compiler-plugin</artifactId>
150-
<version>3.5.1</version>
150+
<version>3.13.0</version>
151151
<executions>
152152
<!-- Replacing default-testCompile as it is treated specially by maven -->
153153
<execution>

Utils/azure-toolkit-ide-hdinsight-libs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<woodstox.version>6.4.0</woodstox.version>
2525
<hadoop.version>3.4.0</hadoop.version>
2626
<snappyjava.version>1.1.10.4</snappyjava.version>
27+
<lombok.version>1.18.36</lombok.version>
2728
</properties>
2829
<modules>
2930
<module>azuretools-core</module>
@@ -59,6 +60,11 @@
5960
<type>pom</type>
6061
<scope>import</scope>
6162
</dependency>
63+
<dependency>
64+
<groupId>org.projectlombok</groupId>
65+
<artifactId>lombok</artifactId>
66+
<version>${lombok.version}</version>
67+
</dependency>
6268
<dependency>
6369
<groupId>com.microsoft.hdinsight</groupId>
6470
<artifactId>hdinsight-node-common</artifactId>

Utils/azure-toolkit-ide-hdinsight-libs/spark-localrun-mock/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<artifact.name>${project.artifactId}-${project.version}.jar</artifact.name>
1313
<hdinsight.htmlcopy.enabled>false</hdinsight.htmlcopy.enabled>
1414
<project.build.encoding>UTF-8</project.build.encoding>
15-
<scala.version>2.12.10</scala.version>
15+
<scala.version>2.12.18</scala.version>
1616
<spark.version>3.4.0</spark.version>
1717
<checkstyle.skip>true</checkstyle.skip>
1818
</properties>

Utils/azure-toolkit-ide-libs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
<properties>
5858
<maven.compiler.source>17</maven.compiler.source>
5959
<maven.compiler.target>17</maven.compiler.target>
60+
<lombok.version>1.18.36</lombok.version>
6061
<azure.toolkit-lib.version>0.52.2</azure.toolkit-lib.version>
6162
</properties>
6263
<dependencies>
@@ -75,6 +76,11 @@
7576
<type>pom</type>
7677
<scope>import</scope>
7778
</dependency>
79+
<dependency>
80+
<groupId>org.projectlombok</groupId>
81+
<artifactId>lombok</artifactId>
82+
<version>${lombok.version}</version>
83+
</dependency>
7884
<dependency>
7985
<groupId>com.microsoft.azure</groupId>
8086
<artifactId>azure-toolkit-ide-common-lib</artifactId>

0 commit comments

Comments
 (0)