Skip to content

Commit d98d8ad

Browse files
mmazasmmazas
authored andcommitted
Aligned with java & csharp.
Signed-off-by: mmazas <mmazas@ITEM-S104678.emea.msad.sopra>
1 parent 43cd208 commit d98d8ad

File tree

101 files changed

+2685
-1894
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+2685
-1894
lines changed

examples/Interpreter/AST/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,33 @@ THE POSSIBILITY OF SUCH DAMAGE.
4848
<build>
4949
<plugins>
5050

51+
<!-- clear the tests results files -->
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-clean-plugin</artifactId>
55+
<executions>
56+
<execution>
57+
<id>clear-res-test</id>
58+
<phase>process-test-resources</phase>
59+
<goals>
60+
<goal>clean</goal>
61+
</goals>
62+
<configuration>
63+
<excludeDefaultDirectories>true</excludeDefaultDirectories>
64+
<filesets>
65+
<fileset>
66+
<directory>files</directory>
67+
<includes>
68+
<include>**/*.out</include>
69+
<include>**/*.err</include>
70+
</includes>
71+
</fileset>
72+
</filesets>
73+
</configuration>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
5178
<plugin>
5279
<groupId>com.github.maven-nar</groupId>
5380
<artifactId>nar-maven-plugin</artifactId>
File renamed without changes.
File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTIntConstNode.cc renamed to examples/Interpreter/AST/src/main/cpp.what/ASTIntConstNode.cc

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTIntConstNode.h renamed to examples/Interpreter/AST/src/main/cpp.what/ASTIntConstNode.h

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTReadStatement.cc renamed to examples/Interpreter/AST/src/main/cpp.what/ASTReadStatement.cc

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTReadStatement.h renamed to examples/Interpreter/AST/src/main/cpp.what/ASTReadStatement.h

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTVarDeclaration.cc renamed to examples/Interpreter/AST/src/main/cpp.what/ASTVarDeclaration.cc

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTVarDeclaration.h renamed to examples/Interpreter/AST/src/main/cpp.what/ASTVarDeclaration.h

File renamed without changes.

examples/Interpreter/AST/src/main/cpp.old/ASTWriteStatement.cc renamed to examples/Interpreter/AST/src/main/cpp.what/ASTWriteStatement.cc

File renamed without changes.

0 commit comments

Comments
 (0)