Skip to content

Commit

Permalink
CC-11858: Add release maven plugin and prepare 10.0 release (#518)
Browse files Browse the repository at this point in the history
* CC-11858: Add release maven plugin to HDFS connector formerly shipping with CP

* CC-11858: Prepare for 10.0 release

* CC-11858: Disable downstream build validation on jenkins for 10 and beyond
  • Loading branch information
kkonstantine committed Sep 22, 2020
1 parent bbfce1d commit f1c6101
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
1 change: 1 addition & 0 deletions Jenkinsfile
Expand Up @@ -4,4 +4,5 @@ common {
upstreamProjects = ['confluentinc/schema-registry','confluentinc/common']
nodeLabel = 'docker-oraclejdk8'
twistlockCveScan = true
downStreamValidate = false
}
32 changes: 20 additions & 12 deletions pom.xml
Expand Up @@ -22,11 +22,12 @@
<parent>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common-parent</artifactId>
<version>6.0.0-SNAPSHOT</version>
<version>10.0.0-SNAPSHOT</version>
</parent>

<artifactId>kafka-connect-hdfs</artifactId>
<packaging>jar</packaging>
<version>10.0.0-SNAPSHOT</version>
<name>kafka-connect-hdfs</name>
<organization>
<name>Confluent, Inc.</name>
Expand Down Expand Up @@ -56,6 +57,7 @@
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
<apacheds-jdbm1.version>2.0.0-M2</apacheds-jdbm1.version>
<kafka.connect.maven.plugin.version>0.11.1</kafka.connect.maven.plugin.version>
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
</properties>

<repositories>
Expand All @@ -81,32 +83,32 @@
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-core</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-format</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-partitioner</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-wal</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-hive</artifactId>
<version>${confluent.version}</version>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
Expand Down Expand Up @@ -178,7 +180,7 @@
</goals>
<configuration>
<title>Kafka Connect HDFS</title>
<documentationUrl>https://docs.confluent.io/${project.version}/connect/connect-hdfs/docs/index.html</documentationUrl>
<documentationUrl>https://docs.confluent.io/${confluent.version}/connect/connect-hdfs/docs/index.html</documentationUrl>
<description>
The HDFS connector allows you to export data from Kafka topics to HDFS files in a variety of formats and integrates with Hive to make data immediately available for querying with HiveQL.

Expand All @@ -198,10 +200,6 @@
<ownerUrl>https://confluent.io/</ownerUrl>
<ownerLogo>logos/confluent.png</ownerLogo>

<dockerNamespace>confluentinc</dockerNamespace>
<dockerName>cp-kafka-connect</dockerName>
<dockerTag>${project.version}</dockerTag>

<componentTypes>
<componentType>sink</componentType>
</componentTypes>
Expand Down Expand Up @@ -294,6 +292,16 @@
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<remoteTagging>false</remoteTagging>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>

<resources>
Expand Down

0 comments on commit f1c6101

Please sign in to comment.