Skip to content

Commit 2702dee

Browse files
authored
Merge pull request #2 from evolvedbinary/hotfix/namespace-context
New implementation of NamespaceContextImpl
2 parents ee19392 + f054254 commit 2702dee

File tree

5 files changed

+1703
-238
lines changed

5 files changed

+1703
-238
lines changed

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@
124124
<encoding>${project.build.sourceEncoding}</encoding>
125125
</configuration>
126126
</plugin>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-surefire-plugin</artifactId>
130+
<version>3.5.4</version>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.apache.maven.plugins</groupId>
134+
<artifactId>maven-failsafe-plugin</artifactId>
135+
<version>3.5.4</version>
136+
</plugin>
127137
<plugin>
128138
<groupId>org.apache.maven.plugins</groupId>
129139
<artifactId>maven-javadoc-plugin</artifactId>

util/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@
2929

3030
<build>
3131
<plugins>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-failsafe-plugin</artifactId>
35+
<executions>
36+
<execution>
37+
<goals>
38+
<goal>integration-test</goal>
39+
<goal>verify</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
3244
<plugin>
3345
<groupId>com.github.monkeywie</groupId>
3446
<artifactId>copy-rename-maven-plugin</artifactId>

0 commit comments

Comments
 (0)