Skip to content

Commit 2f20d85

Browse files
author
eugenp
committed
maven work
1 parent 5aa9389 commit 2f20d85

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

core-java/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@
1010
# Packaged files #
1111
*.jar
1212
*.war
13-
*.ear
13+
*.ear
14+
15+
# Files generated by integration tests
16+
*.txt

core-java/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-surefire-plugin</artifactId>
134134
<version>${maven-surefire-plugin.version}</version>
135+
<configuration>
136+
<excludes>
137+
<exclude>**/*IntegrationTest.java</exclude>
138+
</excludes>
139+
</configuration>
135140
</plugin>
136141

137142
</plugins>

0 commit comments

Comments
 (0)