Skip to content

Commit

Permalink
Merge branch 'apache-3.3' into 3.3.0-beta.1-release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Sep 26, 2023
2 parents 0b2b9f7 + bcd5caf commit 0c9d5e2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
16 changes: 14 additions & 2 deletions dubbo-plugin/dubbo-plugin-loom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
<artifactId>dubbo-plugin-loom</artifactId>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skip_maven_deploy>false</skip_maven_deploy>
Expand All @@ -44,4 +42,18 @@
<optional>true</optional>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>21</source>
<target>21</target>
<release>21</release>
</configuration>
</plugin>
</plugins>
</build>
</project>
6 changes: 6 additions & 0 deletions dubbo-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,11 @@
<module>dubbo-plugin-loom</module>
</modules>
</profile>
<profile>
<id>release</id>
<modules>
<module>dubbo-plugin-loom</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 0c9d5e2

Please sign in to comment.