소스 검색

Remove all intermediate folders when a clean is requested

James Albright 8 년 전
부모
커밋
70e8ec9dea
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 6 0
      client/pom.xml

+ 1 - 0
.gitignore

@@ -3,3 +3,4 @@
 /client/target
 /client/pwm-client.iml
 /client/.node
+/client/.idea

+ 6 - 0
client/pom.xml

@@ -53,9 +53,15 @@
                         </goals>
                         <configuration>
                             <filesets>
+                                <fileset>
+                                    <directory>.node</directory>
+                                </fileset>
                                 <fileset>
                                     <directory>dist</directory>
                                 </fileset>
+                                <fileset>
+                                    <directory>node_modules</directory>
+                                </fileset>
                             </filesets>
                         </configuration>
                     </execution>