Skip to content

Commit ba3626a

Browse files
authored
Include benchmrk module on the modules list (OpenFeign#654)
1 parent 861bb80 commit ba3626a

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<module>sax</module>
3737
<module>slf4j</module>
3838
<module>java8</module>
39+
<module>benchmark</module>
3940
</modules>
4041

4142
<properties>
@@ -283,6 +284,15 @@
283284
</archive>
284285
</configuration>
285286
</plugin>
287+
288+
<plugin>
289+
<groupId>org.apache.maven.plugins</groupId>
290+
<artifactId>maven-surefire-plugin</artifactId>
291+
<version>2.20</version>
292+
<configuration>
293+
<redirectTestOutputToFile>true</redirectTestOutputToFile>
294+
</configuration>
295+
</plugin>
286296
</plugins>
287297
</pluginManagement>
288298

travis/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ if is_pull_request; then
168168
# If we are on master, we will deploy the latest snapshot or release version
169169
# - If a release commit fails to deploy for a transient reason, delete the broken version from bintray and click rebuild
170170
elif is_travis_branch_master; then
171-
./mvnw --batch-mode -s ./.settings.xml -Prelease -nsu -DskipTests deploy
171+
./mvnw --batch-mode -s ./.settings.xml -Prelease -nsu -pl -:benchmark -DskipTests deploy
172172

173173
# If the deployment succeeded, sync it to Maven Central. Note: this needs to be done once per project, not module, hence -N
174174
if is_release_commit; then

0 commit comments

Comments
 (0)