|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 5 | + contributor license agreements. See the NOTICE file distributed with |
| 6 | + this work for additional information regarding copyright ownership. |
| 7 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 8 | + (the "License"); you may not use this file except in compliance with |
| 9 | + the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, software |
| 14 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | + See the License for the specific language governing permissions and |
| 17 | + limitations under the License. |
| 18 | +
|
| 19 | +--> |
| 20 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | + <modelVersion>4.0.0</modelVersion> |
| 24 | + <parent> |
| 25 | + <groupId>org.apache.camel.quarkus</groupId> |
| 26 | + <artifactId>camel-quarkus-cyberark-vault-parent</artifactId> |
| 27 | + <version>3.31.0-SNAPSHOT</version> |
| 28 | + <relativePath>../pom.xml</relativePath> |
| 29 | + </parent> |
| 30 | + |
| 31 | + <artifactId>camel-quarkus-cyberark-vault</artifactId> |
| 32 | + <name>Camel Quarkus :: CyberArk Vault :: Runtime</name> |
| 33 | + <description>Retrieve secrets from CyberArk Conjur Vault.</description> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <camel.quarkus.jvmSince>3.31.0</camel.quarkus.jvmSince> |
| 37 | + <camel.quarkus.nativeSince>3.31.0</camel.quarkus.nativeSince> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.camel.quarkus</groupId> |
| 43 | + <artifactId>camel-quarkus-core</artifactId> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.camel</groupId> |
| 47 | + <artifactId>camel-cyberark-vault</artifactId> |
| 48 | + </dependency> |
| 49 | + </dependencies> |
| 50 | + |
| 51 | + <build> |
| 52 | + <plugins> |
| 53 | + <plugin> |
| 54 | + <groupId>io.quarkus</groupId> |
| 55 | + <artifactId>quarkus-extension-maven-plugin</artifactId> |
| 56 | + </plugin> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-compiler-plugin</artifactId> |
| 60 | + <configuration> |
| 61 | + <annotationProcessorPaths> |
| 62 | + <path> |
| 63 | + <groupId>io.quarkus</groupId> |
| 64 | + <artifactId>quarkus-extension-processor</artifactId> |
| 65 | + <version>${quarkus.version}</version> |
| 66 | + </path> |
| 67 | + </annotationProcessorPaths> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + </plugins> |
| 71 | + </build> |
| 72 | + |
| 73 | + |
| 74 | + <profiles> |
| 75 | + <profile> |
| 76 | + <id>full</id> |
| 77 | + <activation> |
| 78 | + <property> |
| 79 | + <name>!quickly</name> |
| 80 | + </property> |
| 81 | + </activation> |
| 82 | + <build> |
| 83 | + <plugins> |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.camel.quarkus</groupId> |
| 86 | + <artifactId>camel-quarkus-maven-plugin</artifactId> |
| 87 | + <executions> |
| 88 | + <execution> |
| 89 | + <id>update-extension-doc-page</id> |
| 90 | + <goals> |
| 91 | + <goal>update-extension-doc-page</goal> |
| 92 | + </goals> |
| 93 | + <phase>process-classes</phase> |
| 94 | + </execution> |
| 95 | + </executions> |
| 96 | + </plugin> |
| 97 | + </plugins> |
| 98 | + </build> |
| 99 | + </profile> |
| 100 | + </profiles> |
| 101 | +</project> |
0 commit comments