streamsets-datacollector-stage-lib-tutorial
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.streamsets</groupId> <artifactId>streamsets-datacollector-stage-lib-tutorial</artifactId> <version>6.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ IBM Confidential ~ PID 5900-BAF ~ Copyright StreamSets Inc., an IBM Company 2024 --> <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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.streamsets</groupId> <artifactId>streamsets-datacollector-stage-lib-tutorial</artifactId> <version>6.1.1</version> <name>StreamSets Data Collector Stage Library Tutorial</name> <description>StreamSets Stage Library Archetype</description> <packaging>maven-archetype</packaging> <url>https://www.streamsets.com</url> <scm> <url>https://github.com/streamsets/datacollector</url> </scm> <organization> <name>StreamSets</name> <url>https://www.streamsets.com</url> </organization> <developers> <developer> <id>alex.sanchez</id> <name>Alex Sanchez</name> <email>alex.sanchez@streamsets.com</email> <timezone>Madrid</timezone> </developer> </developers> <licenses> <license> <name>Proprietary</name> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>archetype-resources/pom.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>archetype-resources/pom.xml</exclude> </excludes> </resource> </resources> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.4</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <escapeString>\</escapeString> <nonFilteredFileExtensions> <nonFilteredFileExtension>png</nonFilteredFileExtension> </nonFilteredFileExtensions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-archetype-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <snapshotRepository> <id>artifactory-server</id> <name>Snapshots</name> <url>https://repo.streamsets.net/artifactory/libs-snapshot-local</url> </snapshotRepository> <repository> <id>artifactory-server</id> <name>Releases</name> <url>https://repo.streamsets.net/artifactory/libs-release-local</url> </repository> </distributionManagement> </project>