tisonkun commented on issue #16694:
URL: https://github.com/apache/pulsar/issues/16694#issuecomment-1189861090

   It seems we have a plugin to copy-resources before test-compile. So how can 
I integrate it with IDEA?
   
   ```xml
         <plugin>
           <artifactId>maven-resources-plugin</artifactId>
           <executions>
             <execution>
               <id>copy-resources</id>
               <phase>test-compile</phase>
               <goals>
                 <goal>copy-resources</goal>
               </goals>
               <configuration>
                 
<outputDirectory>${project.build.testOutputDirectory}/certificate-authority</outputDirectory>
                 <overwrite>true</overwrite>
                 <resources>
                   <resource>
                     
<directory>${project.parent.basedir}/tests/certificate-authority</directory>
                     <filtering>false</filtering>
                   </resource>
                 </resources>
               </configuration>
             </execution>
           </executions>
         </plugin>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to