Skip to content

Commit

Permalink
[pinpoint-apm#10736] Separate dummy java class not to disturb spring-…
Browse files Browse the repository at this point in the history
…web dependency
  • Loading branch information
intr3p1d committed Mar 14, 2024
1 parent fb5b18e commit 8a73978
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions plugins/resttemplate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals><goal>add-source</goal></goals>
<configuration>
<sources>
<source>src/main/java-spring</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down
15 changes: 15 additions & 0 deletions plugins/spring-webflux/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,21 @@

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals><goal>add-source</goal></goals>
<configuration>
<sources>
<source>src/main/java-spring</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit 8a73978

Please sign in to comment.