Skip to content

Commit 0e04b84

Browse files
author
Dave Syer
committed
Fix CI pipeline
1 parent f38a06a commit 0e04b84

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed

pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ resources:
1919

2020
jobs:
2121
- name: build
22+
public: true
2223
plan:
2324
- get: source
2425
trigger: true

samples/tests/pom.xml

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242

4343
<build>
4444
<plugins>
45-
<plugin>
46-
<artifactId>maven-jar-plugin</artifactId>
47-
<version>${maven-jar-plugin.version}</version>
48-
</plugin>
45+
<plugin>
46+
<artifactId>maven-jar-plugin</artifactId>
47+
<version>${maven-jar-plugin.version}</version>
48+
</plugin>
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-failsafe-plugin</artifactId>
@@ -88,7 +88,9 @@
8888
<plugin>
8989
<groupId>org.codehaus.mojo</groupId>
9090
<artifactId>exec-maven-plugin</artifactId>
91-
<configuration><skip>${skipExec}</skip></configuration>
91+
<configuration>
92+
<skip>${skipExec}</skip>
93+
</configuration>
9294
<executions>
9395
<execution>
9496
<id>app</id>
@@ -153,7 +155,7 @@
153155
<phase>process-test-resources</phase>
154156
<configuration>
155157
<workingDirectory>${basedir}/../simple</workingDirectory>
156-
<executable>${basedir}/../simple/${gradle.exec}</executable>
158+
<executable>${basedir}/../simple/${gradle.exec}</executable>
157159
<arguments>
158160
<argument>build</argument>
159161
<argument>thinResolve</argument>
@@ -168,7 +170,7 @@
168170
<phase>process-test-resources</phase>
169171
<configuration>
170172
<workingDirectory>${basedir}/../multi</workingDirectory>
171-
<executable>${basedir}/../multi/${gradle.exec}</executable>
173+
<executable>${basedir}/../multi/${gradle.exec}</executable>
172174
<arguments>
173175
<argument>build</argument>
174176
<argument>:application:thinResolve</argument>
@@ -183,7 +185,7 @@
183185
</plugins>
184186
<pluginManagement>
185187
<plugins>
186-
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
188+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
187189
<plugin>
188190
<groupId>org.eclipse.m2e</groupId>
189191
<artifactId>lifecycle-mapping</artifactId>
@@ -193,15 +195,9 @@
193195
<pluginExecutions>
194196
<pluginExecution>
195197
<pluginExecutionFilter>
196-
<groupId>
197-
org.codehaus.mojo
198-
</groupId>
199-
<artifactId>
200-
exec-maven-plugin
201-
</artifactId>
202-
<versionRange>
203-
[1.5.0,)
204-
</versionRange>
198+
<groupId>org.codehaus.mojo</groupId>
199+
<artifactId>exec-maven-plugin</artifactId>
200+
<versionRange>[1.5.0,)</versionRange>
205201
<goals>
206202
<goal>exec</goal>
207203
</goals>

0 commit comments

Comments
 (0)