Commit 63fb91a3 by Aaron Dossett Committed by Harish Butani

small changes to accomodate python

parent be8ba795
...@@ -35,3 +35,6 @@ maven-eclipse.xml ...@@ -35,3 +35,6 @@ maven-eclipse.xml
logs logs
*.log *.log
test-output test-output
#Python
*.pyc
...@@ -1027,7 +1027,20 @@ ...@@ -1027,7 +1027,20 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>**/*.pyc</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment