plt-kafka-project-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.frtu.archetype</groupId> <artifactId>plt-kafka-project-archetype</artifactId> <version>1.1.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.frtu.governance</groupId> <artifactId>ext-avro-pom</artifactId> <version>1.1.0</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>com.github.frtu.archetype</groupId> <artifactId>plt-kafka-project-archetype</artifactId> <packaging>jar</packaging> <name>Kafka Platform project archetype</name> <description>Kafka Platform project archetype</description> <build> <plugins> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <version>1.5.2</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>replace</goal> </goals> </execution> </executions> <configuration> <ignoreMissingFile>false</ignoreMissingFile> <file>${project.build.outputDirectory}/META-INF/maven/archetype-metadata.xml</file> <replacements> <replacement> <token>%PROJECT_VERSION%</token> <value>${project.version}</value> </replacement> </replacements> </configuration> </plugin> </plugins> </build> </project>