feed
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>codes.rafael.feed</groupId>
<artifactId>feed</artifactId>
<version>1.6</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>codes.rafael.feed</groupId>
<artifactId>feed</artifactId>
<version>1.6</version>
<packaging>pom</packaging>
<name>Generic feed processing for Java</name>
<description>This library implements persistent and consistent processing of feed data without making assumptions of a feed's structure or source. In this context a feed can represent any chain of data that can be implemented as the `FeedEndpoint` interface of the *feed-api* module.</description>
<url>https://github.com/raphw/skatteprosessen-feed</url>
<distributionManagement>
<repository>
<id>central</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/raphw/skatteprosessen-feed.git</connection>
<developerConnection>scm:git:git@github.com:raphw/skatteprosessen-feed.git</developerConnection>
<url>http://github.com/raphw/skatteprosessen-feed/tree/master</url>
<tag>feed-1.6</tag>
</scm>
<developers>
<developer>
<name>Rafael Winterhalter</name>
<email>rafael.wth@gmail.com</email>
<organization>Skatteetaten</organization>
<organizationUrl>https://rafael.codes</organizationUrl>
</developer>
</developers>
<modules>
<module>feed-api</module>
<module>feed-memory</module>
<module>feed-reader</module>
<module>feed-stream</module>
<module>feed-client-atom</module>
<module>feed-client-kafka</module>
<module>feed-client-sql</module>
<module>feed-repository-jdbc</module>
<module>feed-persistent-jdbc</module>
<module>feed-publisher-jdbc</module>
<module>feed-client-publisher</module>
<module>feed-client-filesystem</module>
</modules>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<inceptionYear>2018</inceptionYear>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<kafka-docker>org.testcontainers.containers.KafkaContainer</kafka-docker>
<sonar.jacoco.reportPath>${project.build.directory}/jacoco.exec</sonar.jacoco.reportPath>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.26.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<excludedGroups>${kafka-docker}</excludedGroups>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalOptions>-package</additionalOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>kafka-docker</id>
<properties>
<kafka-docker />
</properties>
</profile>
</profiles>
</project>