Skip to content

Commit

Permalink
Fixup Provide a quick profile #1607
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Oct 29, 2020
1 parent 4d47081 commit 9bdf64d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<zt-exec.version>1.11</zt-exec.version>

<!-- Maven plugin versions (keep sorted alphabetically) -->
<cq-plugin.version>0.20.0</cq-plugin.version>
<cq-plugin.version>0.24.0</cq-plugin.version>
<build-helper-maven-plugin.version>3.1.0</build-helper-maven-plugin.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<formatter-maven-plugin.version>2.11.0</formatter-maven-plugin.version>
Expand Down
16 changes: 0 additions & 16 deletions tooling/create-extension-templates/integration-test-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,6 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
[#if nativeSupported ]

<profiles>
Expand Down
40 changes: 29 additions & 11 deletions tooling/create-extension-templates/runtime-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-maven-plugin</artifactId>
<executions>
<execution>
<id>update-extension-doc-page</id>
<goals><goal>update-extension-doc-page</goal></goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bootstrap-maven-plugin</artifactId>
Expand All @@ -95,4 +84,33 @@
</plugin>
</plugins>
</build>


<profiles>
<profile>
<id>full</id>
<activation>
<property>
<name>!quickly</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-maven-plugin</artifactId>
<executions>
<execution>
<id>update-extension-doc-page</id>
<goals>
<goal>update-extension-doc-page</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 9bdf64d

Please sign in to comment.