opencrawling-archetype-output-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opencrawling.archetypes</groupId>
<artifactId>opencrawling-archetype-output-connector</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2026 the original author or authors (piergiorgio@apache.org)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opencrawling.archetypes</groupId>
<artifactId>opencrawling-connector-archetypes</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>opencrawling-archetype-output-connector</artifactId>
<packaging>maven-archetype</packaging>
<name>OpenCrawling - Output Connector Archetype</name>
<description>Maven Archetype for building custom OpenCrawling Output Connectors (Destinations & Vector DBs)</description>
<url>https://github.com/opencrawling/opencrawling</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>OpenPj</id>
<name>Piergiorgio Lucidi</name>
<email>piergiorgio@apache.org</email>
<timezone>Europe/Rome</timezone>
<roles>
<role>Founder</role>
<role>Lead Architect</role>
<role>Lead Developer</role>
</roles>
</developer>
<developer>
<id>michaelcizmar</id>
<name>Michael Cizmar</name>
<email>michael@michaelcizmar.com</email>
<timezone>America/Chicago</timezone>
<roles>
<role>Lead Architect</role>
<role>Lead Developer</role>
</roles>
</developer>
<developer>
<id>lcabaceira</id>
<name>Luis Cabaceira</name>
<email>luis.cabaceira@texter.ai</email>
<timezone>Europe/Lisbon</timezone>
<roles>
<role>Lead Architect</role>
<role>Lead Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/opencrawling/opencrawling.git</connection>
<developerConnection>scm:git:ssh://github.com:opencrawling/opencrawling.git</developerConnection>
<url>https://github.com/opencrawling/opencrawling/tree/main</url>
</scm>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.3.1</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>