8000 moved shaded profile to test-parent · arangodb/arangodb-java-driver@a98b0ce · GitHub
[go: up one dir, main page]

Skip to content

Commit a98b0ce

Browse files
committed
moved shaded profile to test-parent
1 parent 7d1baa7 commit a98b0ce

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ workflows:
449449
test-non-func:
450450
jobs:
451451
- test-non-func:
452-
name: test-non-func
452+
name: test-non-func-shaded=<<matrix.shaded>>
453453
matrix:
454454
parameters:
455455
shaded:

test-non-functional/pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,40 @@
5656
</dependency>
5757
</dependencies>
5858

59+
<profiles>
60+
<profile>
61+
<id>shaded</id>
62+
<activation>
63+
<property>
64+
<name>shaded</name>
65+
<value>true</value>
66+
</property>
67+
</activation>
68+
<build>
69+
<plugins>
70+
<plugin>
71+
<groupId>com.google.code.maven-replacer-plugin</groupId>
72+
<artifactId>replacer</artifactId>
73+
<configuration>
74+
<replacements>
75+
<replacement>
76+
<token>com.fasterxml.jackson.databind.JsonNode</token>
77+
<value>com.arangodb.shaded.fasterxml.jackson.databind.JsonNode</value>
78+
</replacement>
79+
<replacement>
80+
<token>com.fasterxml.jackson.databind.ObjectNode</token>
81+
<value>com.arangodb.shaded.fasterxml.jackson.databind.ObjectNode</value>
82+
</replacement>
83+
<replacement>
84+
<token>com.fasterxml.jackson.databind.node.JsonNodeFactory</token>
85+
<value>com.arangodb.shaded.fasterxml.jackson.databind.node.JsonNodeFactory</value>
86+
</replacement>
87+
</replacements>
88+
</configuration>
89+
</plugin>
90+
</plugins>
91+
</build>
92+
</profile>
93+
</profiles>
94+
5995
</project>

0 commit comments

Comments
 (0)
0