kafka-webview
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sourcelab</groupId> <artifactId>kafka-webview</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>org.sourcelab</groupId> <artifactId>kafka-webview</artifactId> <packaging>pom</packaging> <version>1.0.0</version> <!-- Define submodules --> <modules> <module>kafka-webview-plugin</module> <module>kafka-webview-ui</module> </modules> <!-- Require Maven 3.3.9 --> <prerequisites> <maven>3.3.9</maven> </prerequisites> <!-- Module Description and Ownership --> <name>Kafka WebView</name> <description> A full-featured web-based Apache Kafka consumer. Kafka WebView presents an easy-to-use web based interface for reading data out of kafka topics and providing basic filtering and searching capabilities. </description> <url>https://github.com/SourceLabOrg/kafka-webview</url> <developers> <developer> <name>Stephen Powis</name> <email>stephen.powis@gmail.com</email> <organization>SourceLab.org</organization> <organizationUrl>https://www.sourcelab.org/</organizationUrl> </developer> </developers> <!-- MIT License --> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <!-- Source Control --> <scm> <connection>scm:git:git://github.com/SourceLabOrg/kafka-webview.git</connection> <developerConnection>scm:git:ssh://github.com:SourceLabOrg/kafka-webview.git</developerConnection> <url>https://github.com/SourceLabOrg/kafka-webview/tree/master</url> </scm> <!-- Module Properties --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <!-- test toggling --> <skipTests>false</skipTests> <skipCheckStyle>false</skipCheckStyle> </properties> <!-- Use Spring Boot Starter as Parent --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.6.RELEASE</version> </parent> <dependencies> <!-- No Parent Dependencies! --> </dependencies> <build> <plugins> <!-- Set Source & Target JRE Version --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- Release plugin --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <!-- Enforce Checkstyles Validation --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <executions> <execution> <id>checkstyle-validate</id> <phase>validate</phase><!-- when we need to run checkstyle::check --> <configuration> <configLocation>checkstyle.xml</configLocation> <includeTestSourceDirectory>false</includeTestSourceDirectory> <encoding>utf-8</encoding> <consoleOutput>true</consoleOutput> <violationSeverity>warning</violationSeverity> <failsOnError>true</failsOnError> <enableRSS>false</enableRSS> <!-- By default we enable checkstyle validation --> <skip>${skipCheckStyle}</skip> </configuration> <goals> <!-- Generate site/html report --> <goal>checkstyle</goal> <!-- Enforce failing build on checkstyle failure --> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- License Auditing --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <header>LICENSE.txt</header> <includes> **/**.java </includes> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!-- For deploying to maven central --> <distributionManagement> <!-- Snapshot repository --> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <!-- release profile for deploying --> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Build Sources Jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Build Javadoc Jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG Signing of Artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>SourceLab.org</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>