You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: polyapi-maven-plugin/src/it/deploy-function-it/pom.xml
+19-36Lines changed: 19 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -120,42 +120,25 @@
120
120
</execution>
121
121
</executions>
122
122
</plugin>
123
+
<plugin>
124
+
<groupId>org.apache.maven.plugins</groupId>
125
+
<artifactId>maven-antrun-plugin</artifactId>
126
+
<version>1.8</version>
127
+
<executions>
128
+
<execution>
129
+
<id>sleep-for-a-while</id>
130
+
<phase>test-compile</phase>
131
+
<configuration>
132
+
<target>
133
+
<sleepseconds="10" />
134
+
</target>
135
+
</configuration>
136
+
<goals>
137
+
<goal>run</goal>
138
+
</goals>
139
+
</execution>
140
+
</executions>
141
+
</plugin>
123
142
</plugins>
124
143
</build>
125
-
126
-
<profiles>
127
-
<!-- Profile to be run exclusively in EU1 function due to a bug that requires some time between deployment of a server function and it's execution. -->
0 commit comments