Commit 63fb91a3 by Aaron Dossett Committed by Harish Butani

small changes to accomodate python

parent be8ba795
......@@ -35,3 +35,6 @@ maven-eclipse.xml
logs
*.log
test-output
#Python
*.pyc
......@@ -1027,7 +1027,20 @@
</execution>
</executions>
</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>
</build>
</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