├── .github ├── PULL_REQUEST_TEMPLATE.md ├── ci-prerequisites.sh ├── dependabot.yml ├── mvn-settings.xml ├── quarkus-ecosystem-test ├── quarkus-github-bot.yml ├── release-settings.xml └── workflows │ ├── build.yml │ ├── deploy-snapshots.yml │ └── quarkus-snapshots.yml ├── .gitignore ├── .mvn ├── extensions.xml ├── maven.config ├── rrf │ ├── groupId-atlassian.txt │ ├── groupId-gradle.txt │ └── groupId-shibboleth.txt └── wrapper │ └── maven-wrapper.properties ├── LICENSE.txt ├── README.md ├── check-version.sh ├── generated-platform-project ├── pom.xml ├── quarkus-amazon-services │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ └── quarkus-amazon-services-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-blaze-persistence │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── blaze-persistence-examples-quarkus-3-testsuite-base │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── blaze-persistence-examples-quarkus-3-testsuite-native-h2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ └── pom.xml │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-camel │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── camel-quarkus-integration-test-activemq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-activemq6 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-amqp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-arangodb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-as2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-avro │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-aws2-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-aws2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-azure-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-base64 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-bean-validator │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-beanio │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-bindy │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-box │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-braintree │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-caffeine │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-cassandraql │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-cbor │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-compression-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-consul │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-couchdb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-crypto-pgp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-crypto │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-csimple │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-csv │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-cxf-soap-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-dataformat │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-dataformats-json-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-datasonnet │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-debezium-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-debug │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-digitalocean │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-disruptor │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-dropbox │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-elasticsearch-rest-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-exec │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-fhir │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-file │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-flatpack │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-fop │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-fory │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-foundation-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-freemarker │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-ftp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-geocoder │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-git │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-github │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-google-bigquery │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-google-pubsub │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-google-secret-manager │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-google-storage │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-google │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-graphql │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-grok │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-groovy-xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-groovy │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-grpc │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-hashicorp-vault │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-hazelcast │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-headersmap │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-hl7 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-http-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-infinispan-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-infinispan-quarkus-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-infinispan │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-influxdb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-iso8583 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jackson-avro │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jackson-protobuf │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jasypt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-java-joor-dsl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jaxb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jcache │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jdbc-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jfr │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jira │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jms-artemis-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jms-artemis-ra │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jms-ibmmq-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jms-qpid-amqp-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jolokia │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jolt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-joor │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jpa │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jsch │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jslt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-json-validator │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jsonata │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jsonpath │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jt400-mocked │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jt400 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-jta │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kafka-oauth │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kafka-sasl-ssl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kafka-sasl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kafka-ssl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kafka │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kamelet │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-knative │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kubernetes │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-kudu │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-agent │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-chat │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-embeddings │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-embeddingstore │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-tokenizer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-tools │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-langchain4j-web-search │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-ldap │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-leveldb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-lra │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-lumberjack │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mail-microsoft-oauth │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mail │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-main-xml-io │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-main-xml-jaxb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-main-yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-main │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-management │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mapstruct │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mdc │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-micrometer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-microprofile-fault-tolerance │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-microprofile-health │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-minio │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mllp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mongodb-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mustache │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-mybatis │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-nats │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-netty │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-nitrite │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-oaipmh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-observability-services │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-ognl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-olingo4 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-openapi-java │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-openstack │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-opentelemetry │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-opentelemetry2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-optaplanner │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-paho-mqtt5 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-paho │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-pdf │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-pg-replication-slot │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-pgevent │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-pinecone │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-platform-http-proxy-ssl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-platform-http-proxy │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-platform-http │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-protobuf │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-pubnub │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-qdrant │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-quartz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-qute │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-reactive-streams │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-rest-openapi │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-rest │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-saga │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-salesforce │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sap-netweaver │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-saxon │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-servicenow │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-servlet │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-shiro │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sjms-artemis-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sjms-qpid-amqp-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sjms2-artemis-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sjms2-qpid-amqp-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-slack │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-smallrye-reactive-messaging │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-smb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-soap │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-solr │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-splunk-hec │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-splunk │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-spring-rabbitmq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-sql │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-ssh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-stax │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-stringtemplate │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-swift │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-syndication │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-syslog │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-tarfile │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-telegram │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-telemetry-dev │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-tika │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-twilio │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-twitter │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-univocity-parsers │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-validator │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-velocity │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-vertx-websocket │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-vertx │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-wasm │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-weather │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-weaviate │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xchange │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xj │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xml-grouped │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xml-jaxp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xmlsecurity │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xpath │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-xslt-saxon │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-integration-test-zendesk │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-junit5-extension-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── camel-quarkus-junit5 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ └── pom.xml │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-cassandra │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── cassandra-quarkus-integration-tests-dse │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── cassandra-quarkus-integration-tests-main │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── cassandra-quarkus-integration-tests-metrics-disabled │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── cassandra-quarkus-integration-tests-metrics-microprofile │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── cassandra-quarkus-integration-tests-no-mapper │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ └── pom.xml │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-cxf │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ ├── quarkus-cxf-integration-test-client-server │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-fast-infoset │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-metrics │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-mtls │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-mtom-awt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-opentelemetry │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-saaj │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-santuario-xmlsec │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-server │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-ws-rm-client │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-ws-security-policy │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-cxf-integration-test-ws-security │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ └── quarkus-cxf-integration-test-ws-trust │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-debezium │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── debezium-quarkus-outbox-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── debezium-quarkus-outbox-reactive-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── pom.xml │ │ └── quarkus-debezium-postgres-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-dependencies-to-build │ └── pom.xml ├── quarkus-extension-changes │ └── pom.xml ├── quarkus-google-cloud-services │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ └── quarkus-google-cloud-services-main-it │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-hazelcast │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ └── quarkus-hazelcast-client-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-langchain4j │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ ├── quarkus-langchain4j-integration-test-ai-gemini │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-anthropic │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-azure-openai │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-devui-multiple-embedding-models │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-devui │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-easy-rag │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-all-minilm-l6-v2-q │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-all-minilm-l6-v2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-bge-small-en-q │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-bge-small-en-v15-q │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-bge-small-en-v15 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-bge-small-en │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-e5-small-v2-q │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-embed-e5-small-v2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-hugging-face │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-jlama │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-llama3-java │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-mcp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-mistralai │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-ollama │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-openai │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-rag-pgvector-flyway │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-rag-pgvector │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-rag │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-simple-ollama │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-tools │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ ├── quarkus-langchain4j-integration-test-vertex-ai-gemini │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── seed │ │ └── quarkus-langchain4j-integration-tests-multiple-providers │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-maven-plugin │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── quarkus │ │ │ ├── maven │ │ │ ├── AbstractDeploymentMojo.java │ │ │ ├── AbstractImageMojo.java │ │ │ ├── AddExtensionMojo.java │ │ │ ├── AddExtensionsMojo.java │ │ │ ├── AnalyseCallTreeMojo.java │ │ │ ├── BuildAnalyticsProvider.java │ │ │ ├── BuildMojo.java │ │ │ ├── CreateExtensionMojo.java │ │ │ ├── CreateJBangMojo.java │ │ │ ├── CreateProjectMojo.java │ │ │ ├── CreateUtils.java │ │ │ ├── DependencySbomMojo.java │ │ │ ├── DependencyTreeMojo.java │ │ │ ├── DeployMojo.java │ │ │ ├── Deployer.java │ │ │ ├── DevMojo.java │ │ │ ├── GenerateCodeMojo.java │ │ │ ├── GenerateCodeTestsMojo.java │ │ │ ├── GoOfflineMojo.java │ │ │ ├── ImageBuildMojo.java │ │ │ ├── ImageBuilder.java │ │ │ ├── ImagePushMojo.java │ │ │ ├── InfoMojo.java │ │ │ ├── ListCategoriesMojo.java │ │ │ ├── ListExtensionsMojo.java │ │ │ ├── ListPlatformsMojo.java │ │ │ ├── MojoLogger.java │ │ │ ├── NativeImageAgentMojo.java │ │ │ ├── PrepareMojo.java │ │ │ ├── PrepareTestsMojo.java │ │ │ ├── QuarkusBootstrapMojo.java │ │ │ ├── QuarkusBootstrapProvider.java │ │ │ ├── QuarkusMavenWorkspaceBuilder.java │ │ │ ├── QuarkusProjectMojoBase.java │ │ │ ├── QuarkusProjectStateMojoBase.java │ │ │ ├── RemoteDevMojo.java │ │ │ ├── RemoveExtensionMojo.java │ │ │ ├── RemoveExtensionsMojo.java │ │ │ ├── RunMojo.java │ │ │ ├── TestMojo.java │ │ │ ├── TrackConfigChangesMojo.java │ │ │ ├── UpdateMojo.java │ │ │ └── components │ │ │ │ ├── BootstrapSessionListener.java │ │ │ │ ├── CompilerOptions.java │ │ │ │ ├── ManifestSection.java │ │ │ │ ├── MavenVersionEnforcer.java │ │ │ │ ├── Prompter.java │ │ │ │ └── QuarkusWorkspaceProvider.java │ │ │ └── platform │ │ │ └── tools │ │ │ └── maven │ │ │ └── MojoMessageWriter.java │ │ └── resources │ │ └── META-INF │ │ ├── m2e │ │ └── lifecycle-mapping-metadata.xml │ │ └── services │ │ └── org.jboss.logging.LoggerProvider ├── quarkus-mcp-server │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-operator-sdk │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ └── quarkus-operator-sdk-integration-tests-basic │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-qpid-jms │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── integration-tests │ │ ├── pom.xml │ │ └── quarkus-qpid-jms-integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties ├── quarkus-sbom │ └── pom.xml ├── quarkus-universe │ ├── bom │ │ └── pom.xml │ ├── descriptor │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── overrides.json │ ├── pom.xml │ └── properties │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── platform-properties.properties └── quarkus │ ├── bom │ └── pom.xml │ ├── descriptor │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── overrides.json │ ├── integration-tests │ ├── pom.xml │ ├── quarkus-config-extensions-integration-test-consul │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── quarkus-vault-integration-test-agroal │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ ├── quarkus-vault-integration-test-app │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── seed │ └── quarkus-vault-integration-test │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── resources │ │ │ └── seed │ │ └── test │ │ └── resources │ │ └── vault-tls.crt │ ├── pom.xml │ └── properties │ ├── pom.xml │ └── src │ └── main │ └── resources │ └── platform-properties.properties ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src └── main │ └── resources │ ├── core │ └── test │ │ └── resources │ │ └── vault │ │ └── vault-tls.crt │ ├── extensions-overrides.json │ └── xslt │ ├── camel-test-pom.xsl │ ├── cxf-test-pom.xsl │ └── hazelcast-test-pom.xsl └── update-quarkus-version.sh /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ci-prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/ci-prerequisites.sh -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mvn-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/mvn-settings.xml -------------------------------------------------------------------------------- /.github/quarkus-ecosystem-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/quarkus-ecosystem-test -------------------------------------------------------------------------------- /.github/quarkus-github-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/quarkus-github-bot.yml -------------------------------------------------------------------------------- /.github/release-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/release-settings.xml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/workflows/deploy-snapshots.yml -------------------------------------------------------------------------------- /.github/workflows/quarkus-snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.github/workflows/quarkus-snapshots.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /.mvn/rrf/groupId-atlassian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.mvn/rrf/groupId-atlassian.txt -------------------------------------------------------------------------------- /.mvn/rrf/groupId-gradle.txt: -------------------------------------------------------------------------------- 1 | org.gradle 2 | -------------------------------------------------------------------------------- /.mvn/rrf/groupId-shibboleth.txt: -------------------------------------------------------------------------------- 1 | org.opensaml 2 | net.shibboleth 3 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/README.md -------------------------------------------------------------------------------- /check-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/check-version.sh -------------------------------------------------------------------------------- /generated-platform-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/integration-tests/quarkus-amazon-services-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/integration-tests/quarkus-amazon-services-integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/integration-tests/quarkus-amazon-services-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-amazon-services/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-amazon-services/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/integration-tests/blaze-persistence-examples-quarkus-3-testsuite-base/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/integration-tests/blaze-persistence-examples-quarkus-3-testsuite-native-h2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-blaze-persistence/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-blaze-persistence/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq6/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-activemq6/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-amqp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-amqp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-amqp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-arangodb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-arangodb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-arangodb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-as2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-as2/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-as2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-avro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-avro/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-avro/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-aws2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-azure-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-azure-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-azure-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-base64/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-base64/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-base64/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bean-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bean-validator/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bean-validator/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-beanio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-beanio/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-beanio/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bindy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bindy/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-bindy/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-box/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-box/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-box/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-braintree/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-braintree/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-braintree/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-caffeine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-caffeine/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-caffeine/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cassandraql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cassandraql/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cassandraql/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cbor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cbor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cbor/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-compression-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-compression-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-compression-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-consul/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-consul/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-consul/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-couchdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-couchdb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-couchdb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto-pgp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto-pgp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto-pgp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-crypto/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csimple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csimple/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csimple/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csv/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csv/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-csv/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cxf-soap-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cxf-soap-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-cxf-soap-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dataformat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dataformat/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dataformat/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dataformats-json-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-datasonnet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-datasonnet/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-datasonnet/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debezium-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debezium-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debezium-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debug/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debug/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-debug/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-digitalocean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-digitalocean/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-digitalocean/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-disruptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-disruptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-disruptor/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dropbox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dropbox/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-dropbox/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-elasticsearch-rest-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-exec/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-exec/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-exec/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fhir/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fhir/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fhir/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-file/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-file/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-flatpack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-flatpack/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-flatpack/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fop/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fop/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fop/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fory/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-fory/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-foundation-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-foundation-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-foundation-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-freemarker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-freemarker/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-freemarker/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ftp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ftp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ftp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-geocoder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-geocoder/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-geocoder/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-git/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-git/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-github/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-github/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-github/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-bigquery/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-bigquery/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-bigquery/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-pubsub/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-pubsub/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-secret-manager/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-storage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-storage/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google-storage/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-google/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-graphql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-graphql/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-graphql/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grok/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grok/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grok/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy-xml/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy-xml/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-groovy/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grpc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grpc/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-grpc/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hashicorp-vault/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hashicorp-vault/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hashicorp-vault/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hazelcast/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hazelcast/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hazelcast/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-headersmap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-headersmap/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-headersmap/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hl7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hl7/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-hl7/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-http-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-http-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-http-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan-common/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan-common/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan-quarkus-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-infinispan/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-influxdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-influxdb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-influxdb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-iso8583/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-iso8583/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-iso8583/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-avro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-avro/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-avro/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-protobuf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-protobuf/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jackson-protobuf/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jasypt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jasypt/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jasypt/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-java-joor-dsl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-java-joor-dsl/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-java-joor-dsl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jaxb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jaxb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jcache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jcache/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jcache/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jdbc-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jdbc-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jdbc-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jfr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jfr/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jfr/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jira/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jira/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jira/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-ra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-ra/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-artemis-ra/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-ibmmq-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-ibmmq-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-ibmmq-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-qpid-amqp-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-qpid-amqp-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jms-qpid-amqp-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolokia/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolokia/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolokia/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolt/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jolt/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-joor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-joor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-joor/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jpa/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jpa/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jq/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jq/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsch/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsch/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jslt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jslt/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jslt/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-json-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-json-validator/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-json-validator/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonata/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonata/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonpath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonpath/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jsonpath/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400-mocked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400-mocked/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400-mocked/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jt400/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jta/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-jta/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-oauth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-oauth/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-oauth/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl-ssl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl-ssl/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl-ssl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-sasl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-ssl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-ssl/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka-ssl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kafka/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kamelet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kamelet/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kamelet/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-knative/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-knative/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-knative/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kubernetes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kubernetes/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kubernetes/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kudu/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kudu/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-kudu/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-agent/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-agent/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-chat/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-chat/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-embeddings/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-embeddingstore/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-tokenizer/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-tools/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-tools/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-langchain4j-web-search/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ldap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ldap/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ldap/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-leveldb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-leveldb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-leveldb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lra/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lra/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lumberjack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lumberjack/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-lumberjack/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail-microsoft-oauth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail-microsoft-oauth/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail-microsoft-oauth/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mail/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-io/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-io/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-io/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-jaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-jaxb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-xml-jaxb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-yaml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-yaml/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main-yaml/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-main/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-management/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-management/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mapstruct/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mapstruct/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mapstruct/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mdc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mdc/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mdc/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-micrometer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-micrometer/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-micrometer/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-microprofile-fault-tolerance/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-microprofile-health/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-microprofile-health/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-microprofile-health/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-minio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-minio/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-minio/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mllp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mllp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mllp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mongodb-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mongodb-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mongodb-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mustache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mustache/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mustache/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mybatis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mybatis/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-mybatis/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nats/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nats/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nats/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-netty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-netty/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-netty/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nitrite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nitrite/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-nitrite/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-oaipmh/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-oaipmh/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-oaipmh/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-observability-services/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ognl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ognl/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ognl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-olingo4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-olingo4/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-olingo4/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openapi-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openapi-java/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openapi-java/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openstack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openstack/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-openstack/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry2/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-opentelemetry2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-optaplanner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-optaplanner/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-optaplanner/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho-mqtt5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho-mqtt5/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho-mqtt5/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-paho/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pdf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pdf/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pdf/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pg-replication-slot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pg-replication-slot/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pg-replication-slot/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pgevent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pgevent/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pgevent/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pinecone/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pinecone/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pinecone/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http-proxy-ssl/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http-proxy/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http-proxy/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-platform-http/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-protobuf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-protobuf/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-protobuf/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pubnub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pubnub/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-pubnub/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qdrant/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qdrant/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qdrant/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-quartz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-quartz/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-quartz/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qute/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qute/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-qute/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-reactive-streams/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-reactive-streams/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-reactive-streams/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest-openapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest-openapi/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest-openapi/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-rest/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saga/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saga/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saga/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-salesforce/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-salesforce/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-salesforce/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sap-netweaver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sap-netweaver/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sap-netweaver/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saxon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saxon/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-saxon/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servicenow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servicenow/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servicenow/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servlet/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-servlet/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-shiro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-shiro/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-shiro/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms-artemis-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms-artemis-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms-artemis-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms-qpid-amqp-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms2-artemis-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms2-artemis-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms2-artemis-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sjms2-qpid-amqp-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-slack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-slack/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-slack/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-smallrye-reactive-messaging/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-smb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-smb/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-smb/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-soap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-soap/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-soap/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-solr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-solr/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-solr/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk-hec/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk-hec/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk-hec/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-splunk/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-spring-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-spring-rabbitmq/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-spring-rabbitmq/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sql/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-sql/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ssh/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ssh/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-ssh/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stax/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stax/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stax/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stringtemplate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stringtemplate/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-stringtemplate/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-swift/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-swift/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-swift/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syndication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syndication/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syndication/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syslog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syslog/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-syslog/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tarfile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tarfile/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tarfile/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telegram/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telegram/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telegram/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telemetry-dev/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telemetry-dev/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-telemetry-dev/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tika/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tika/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-tika/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twilio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twilio/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twilio/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twitter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twitter/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-twitter/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-univocity-parsers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-univocity-parsers/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-univocity-parsers/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-validator/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-validator/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-velocity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-velocity/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-velocity/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx-websocket/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx-websocket/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx-websocket/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-vertx/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-wasm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-wasm/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-wasm/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weather/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weather/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weather/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weaviate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weaviate/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-weaviate/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xchange/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xchange/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xchange/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xj/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xj/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-grouped/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-grouped/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-grouped/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-jaxp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-jaxp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xml-jaxp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xmlsecurity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xmlsecurity/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xmlsecurity/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xpath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xpath/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xpath/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xslt-saxon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xslt-saxon/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-xslt-saxon/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-zendesk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-zendesk/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-integration-test-zendesk/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5-extension-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5-extension-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5-extension-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/camel-quarkus-junit5/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-camel/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-camel/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-dse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-dse/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-dse/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-main/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-main/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-metrics-disabled/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-metrics-microprofile/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/cassandra-quarkus-integration-tests-no-mapper/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cassandra/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cassandra/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client-server/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client-server/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-fast-infoset/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-fast-infoset/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-fast-infoset/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-metrics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-metrics/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-metrics/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtls/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtls/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtls/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtom-awt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtom-awt/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-mtom-awt/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-opentelemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-opentelemetry/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-opentelemetry/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-saaj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-saaj/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-saaj/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-santuario-xmlsec/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-santuario-xmlsec/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-santuario-xmlsec/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-server/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-server/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-rm-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-rm-client/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-rm-client/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security-policy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security-policy/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security-policy/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-security/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-trust/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-trust/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/integration-tests/quarkus-cxf-integration-test-ws-trust/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-cxf/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-cxf/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/debezium-quarkus-outbox-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/integration-tests/debezium-quarkus-outbox-integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/debezium-quarkus-outbox-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/debezium-quarkus-outbox-reactive-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/quarkus-debezium-postgres-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/integration-tests/quarkus-debezium-postgres-integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/integration-tests/quarkus-debezium-postgres-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-debezium/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-debezium/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-dependencies-to-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-dependencies-to-build/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-extension-changes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-extension-changes/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/integration-tests/quarkus-google-cloud-services-main-it/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-google-cloud-services/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-google-cloud-services/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/integration-tests/quarkus-hazelcast-client-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/integration-tests/quarkus-hazelcast-client-integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/integration-tests/quarkus-hazelcast-client-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-hazelcast/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-hazelcast/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-ai-gemini/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-anthropic/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-azure-openai/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-devui-multiple-embedding-models/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-devui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-devui/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-devui/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-easy-rag/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-all-minilm-l6-v2-q/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-all-minilm-l6-v2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-bge-small-en-q/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-bge-small-en-v15-q/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-bge-small-en-v15/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-bge-small-en/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-e5-small-v2-q/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-embed-e5-small-v2/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-hugging-face/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-jlama/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-jlama/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-jlama/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-llama3-java/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-mcp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-mcp/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-mcp/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-mistralai/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-ollama/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-openai/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-rag-pgvector-flyway/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-rag-pgvector/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-rag/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-rag/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-rag/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-simple-ollama/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-tools/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-tools/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-test-vertex-ai-gemini/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/integration-tests/quarkus-langchain4j-integration-tests-multiple-providers/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-langchain4j/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-langchain4j/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AbstractDeploymentMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AbstractDeploymentMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AbstractImageMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AbstractImageMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AddExtensionMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AddExtensionMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AddExtensionsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AddExtensionsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AnalyseCallTreeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/AnalyseCallTreeMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/BuildAnalyticsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/BuildAnalyticsProvider.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/BuildMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/BuildMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateExtensionMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateExtensionMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateJBangMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateJBangMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateUtils.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DependencySbomMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DependencySbomMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DependencyTreeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DependencyTreeMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DeployMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DeployMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/Deployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/Deployer.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GenerateCodeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GenerateCodeMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GenerateCodeTestsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GenerateCodeTestsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GoOfflineMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/GoOfflineMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImageBuildMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImageBuildMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImageBuilder.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImagePushMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ImagePushMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/InfoMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/InfoMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListCategoriesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListCategoriesMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListExtensionsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListExtensionsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListPlatformsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/ListPlatformsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/MojoLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/MojoLogger.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/NativeImageAgentMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/NativeImageAgentMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/PrepareMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/PrepareMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/PrepareTestsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/PrepareTestsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusBootstrapMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusBootstrapMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusBootstrapProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusBootstrapProvider.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusMavenWorkspaceBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusMavenWorkspaceBuilder.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusProjectMojoBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusProjectMojoBase.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusProjectStateMojoBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/QuarkusProjectStateMojoBase.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoteDevMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoteDevMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoveExtensionMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoveExtensionMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoveExtensionsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RemoveExtensionsMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RunMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/RunMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/TestMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/TestMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/TrackConfigChangesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/TrackConfigChangesMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/UpdateMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/UpdateMojo.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/CompilerOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/CompilerOptions.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/ManifestSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/ManifestSection.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/MavenVersionEnforcer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/MavenVersionEnforcer.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/Prompter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/components/Prompter.java -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-maven-plugin/src/main/resources/META-INF/services/org.jboss.logging.LoggerProvider: -------------------------------------------------------------------------------- 1 | io.quarkus.maven.MojoLogger -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-mcp-server/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-mcp-server/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/integration-tests/quarkus-operator-sdk-integration-tests-basic/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-operator-sdk/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-operator-sdk/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/integration-tests/quarkus-qpid-jms-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/integration-tests/quarkus-qpid-jms-integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/integration-tests/quarkus-qpid-jms-integration-tests/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-qpid-jms/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-qpid-jms/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus-sbom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-sbom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus-universe/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus-universe/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /generated-platform-project/quarkus/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/bom/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/descriptor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/descriptor/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/integration-tests/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-config-extensions-integration-test-consul/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/integration-tests/quarkus-config-extensions-integration-test-consul/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-config-extensions-integration-test-consul/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-agroal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-agroal/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-agroal/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-app/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test-app/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/integration-tests/quarkus-vault-integration-test/src/main/resources/seed: -------------------------------------------------------------------------------- 1 | seed -------------------------------------------------------------------------------- /generated-platform-project/quarkus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/properties/pom.xml -------------------------------------------------------------------------------- /generated-platform-project/quarkus/properties/src/main/resources/platform-properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/generated-platform-project/quarkus/properties/src/main/resources/platform-properties.properties -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/resources/core/test/resources/vault/vault-tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/src/main/resources/core/test/resources/vault/vault-tls.crt -------------------------------------------------------------------------------- /src/main/resources/extensions-overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/src/main/resources/extensions-overrides.json -------------------------------------------------------------------------------- /src/main/resources/xslt/camel-test-pom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/src/main/resources/xslt/camel-test-pom.xsl -------------------------------------------------------------------------------- /src/main/resources/xslt/cxf-test-pom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/src/main/resources/xslt/cxf-test-pom.xsl -------------------------------------------------------------------------------- /src/main/resources/xslt/hazelcast-test-pom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/src/main/resources/xslt/hazelcast-test-pom.xsl -------------------------------------------------------------------------------- /update-quarkus-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quarkusio/quarkus-platform/HEAD/update-quarkus-version.sh --------------------------------------------------------------------------------