Skip to content

Commit

Permalink
Merge branch 'refs/heads/apache-3.3' into 3.3.0-beta.5-release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Aug 5, 2024
2 parents 29ebef8 + bdfe6f4 commit 891b18a
Showing 1 changed file with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-3-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
Expand All @@ -97,4 +92,20 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>jdk-version-ge-17</id>
<activation>
<jdk>[17,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-3-autoconfigure</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

0 comments on commit 891b18a

Please sign in to comment.