Skip to content

Commit 0c9d5e2

Browse files
committed
Merge branch 'apache-3.3' into 3.3.0-beta.1-release
2 parents 0b2b9f7 + bcd5caf commit 0c9d5e2

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

dubbo-plugin/dubbo-plugin-loom/pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
<artifactId>dubbo-plugin-loom</artifactId>
3030

3131
<properties>
32-
<maven.compiler.source>21</maven.compiler.source>
33-
<maven.compiler.target>21</maven.compiler.target>
3432
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3533
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3634
<skip_maven_deploy>false</skip_maven_deploy>
@@ -44,4 +42,18 @@
4442
<optional>true</optional>
4543
</dependency>
4644
</dependencies>
45+
46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-compiler-plugin</artifactId>
51+
<configuration>
52+
<source>21</source>
53+
<target>21</target>
54+
<release>21</release>
55+
</configuration>
56+
</plugin>
57+
</plugins>
58+
</build>
4759
</project>

dubbo-plugin/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,11 @@
7575
<module>dubbo-plugin-loom</module>
7676
</modules>
7777
</profile>
78+
<profile>
79+
<id>release</id>
80+
<modules>
81+
<module>dubbo-plugin-loom</module>
82+
</modules>
83+
</profile>
7884
</profiles>
7985
</project>

0 commit comments

Comments
 (0)