Skip to content

Commit

Permalink
Support for selecting a specific service provider during debugging #1230
Browse files Browse the repository at this point in the history
 (#1231)

fixes #1230
  • Loading branch information
tonycody committed Nov 30, 2023
1 parent fdd3a6e commit 95657df
Show file tree
Hide file tree
Showing 33 changed files with 1,119 additions and 982 deletions.
1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-XX:+UseG1GC -Xmx2g -Xms2g
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Dmaven.test.skip=false
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.8/apache-maven-3.8.8-bin.zip
28 changes: 11 additions & 17 deletions dubbo-admin-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,13 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>dubbo-admin</artifactId>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-admin</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dubbo-admin-distribution</artifactId>

Expand All @@ -48,18 +45,16 @@
<version>1.8</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<phase>package</phase>
<configuration>
<tasks>
<copy file="../dubbo-admin-server/target/dubbo-admin-server-${project.version}.jar"
tofile="target/dubbo-admin-${project.version}.jar"/>
<copy file="../dubbo-admin-server/target/classes/application.properties"
tofile="src/bin/config/application.properties"/>
<copy file="../dubbo-admin-server/target/dubbo-admin-server-${project.version}.jar" tofile="target/dubbo-admin-${project.version}.jar"></copy>
<copy file="../dubbo-admin-server/target/classes/application.properties" tofile="src/bin/config/application.properties"></copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
Expand All @@ -78,10 +73,10 @@
<executions>
<execution>
<id>bin-release</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptors>
<descriptor>src/assembly/bin-release.xml</descriptor>
Expand All @@ -90,10 +85,10 @@
</execution>
<execution>
<id>source-release</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptors>
<descriptor>src/assembly/source-release.xml</descriptor>
Expand All @@ -108,16 +103,15 @@
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
spring.profiles.active=dev

server.port=38080
dubbo.protocol.port=30880
Expand Down Expand Up @@ -84,4 +85,4 @@ spring.datasource.password=
# id generate type
mybatis-plus.global-config.db-config.id-type=none

dubbo.application.logger=slf4j
dubbo.application.logger=slf4j
Loading

0 comments on commit 95657df

Please sign in to comment.