You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/07/20 05:58:02 UTC

[GitHub] [pulsar] tisonkun commented on issue #16694: Tests inherited from MockedPulsarServiceBaseTest cannot run locally

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: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org