Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Commit 48f96cc

Browse files
committed
skip coverage for adapter
1 parent c2179d1 commit 48f96cc

File tree

4 files changed

+14
-24
lines changed
  • sofa-serverless-runtime/sofa-serverless-adapter-ext

4 files changed

+14
-24
lines changed

sofa-serverless-runtime/sofa-serverless-adapter-ext/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,23 @@
1111
<artifactId>sofa-serverless-adapter-ext</artifactId>
1212
<version>${revision}</version>
1313
<packaging>pom</packaging>
14+
1415
<modules>
1516
<module>sofa-serverless-adapter-log4j2</module>
1617
<module>sofa-serverless-adapter-apollo</module>
1718
<module>sofa-serverless-adapter-dubbo2.6</module>
1819
</modules>
20+
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.jacoco</groupId>
25+
<artifactId>jacoco-maven-plugin</artifactId>
26+
<version>${jacoco.maven.plugin}</version>
27+
<configuration>
28+
<skip>true</skip>
29+
</configuration>
30+
</plugin>
31+
</plugins>
32+
</build>
1933
</project>

sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-apollo/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,6 @@
6969
</execution>
7070
</executions>
7171
</plugin>
72-
<plugin>
73-
<groupId>org.jacoco</groupId>
74-
<artifactId>org.jacoco.build</artifactId>
75-
<version>${jacoco.maven.plugin}</version>
76-
<configuration>
77-
<skip>true</skip>
78-
</configuration>
79-
</plugin>
8072
</plugins>
8173
</build>
8274
</project>

sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-dubbo2.6/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,6 @@
5959
</execution>
6060
</executions>
6161
</plugin>
62-
<plugin>
63-
<groupId>org.jacoco</groupId>
64-
<artifactId>org.jacoco.build</artifactId>
65-
<version>${jacoco.maven.plugin}</version>
66-
<configuration>
67-
<skip>true</skip>
68-
</configuration>
69-
</plugin>
7062
</plugins>
7163
</build>
7264

sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,6 @@
7070
</execution>
7171
</executions>
7272
</plugin>
73-
<plugin>
74-
<groupId>org.jacoco</groupId>
75-
<artifactId>org.jacoco.build</artifactId>
76-
<version>${jacoco.maven.plugin}</version>
77-
<configuration>
78-
<skip>true</skip>
79-
</configuration>
80-
</plugin>
8173
</plugins>
8274
</build>
8375
</project>

0 commit comments

Comments
 (0)