We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa9389 commit 2f20d85Copy full SHA for 2f20d85
core-java/.gitignore
@@ -10,4 +10,7 @@
10
# Packaged files #
11
*.jar
12
*.war
13
-*.ear
+*.ear
14
+
15
+# Files generated by integration tests
16
+*.txt
core-java/pom.xml
@@ -132,6 +132,11 @@
132
<groupId>org.apache.maven.plugins</groupId>
133
<artifactId>maven-surefire-plugin</artifactId>
134
<version>${maven-surefire-plugin.version}</version>
135
+ <configuration>
136
+ <excludes>
137
+ <exclude>**/*IntegrationTest.java</exclude>
138
+ </excludes>
139
+ </configuration>
140
</plugin>
141
142
</plugins>
0 commit comments