Skip to content

Commit 50838b6

Browse files
fixed bug with code signing, updated logo, and added GitHub funding (#10)
1 parent 1254664 commit 50838b6

File tree

3 files changed

+55
-46
lines changed

3 files changed

+55
-46
lines changed

.github/FUNDING.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: jaredpetersen
4+
custom: https://paypal.me/jaredtpetersen

docs/logos/jaredpetersen-logo.png

234 KB
Loading

pom.xml

+51-46
Original file line numberDiff line numberDiff line change
@@ -295,19 +295,51 @@
295295
<plugins>
296296

297297
<plugin>
298-
<groupId>org.apache.maven.plugins</groupId>
299-
<artifactId>maven-javadoc-plugin</artifactId>
300-
<version>3.1.1</version>
298+
<groupId>io.confluent</groupId>
299+
<artifactId>kafka-connect-maven-plugin</artifactId>
300+
<version>0.11.2</version>
301301
<executions>
302302
<execution>
303-
<id>attach-javadocs</id>
303+
<phase>package</phase>
304304
<goals>
305-
<goal>jar</goal>
305+
<goal>kafka-connect</goal>
306306
</goals>
307+
<configuration>
308+
<title>Kafka Connect ArangoDB</title>
309+
<documentationUrl>${project.url}/blob/master/README.md</documentationUrl>
310+
<logo>docs/logos/arangodb-avocado-logo.png</logo>
311+
<ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo>
312+
<ownerUsername>jaredpetersen</ownerUsername>
313+
<ownerType>user</ownerType>
314+
<ownerName>Jared Petersen</ownerName>
315+
<ownerUrl>https://github.com/jaredpetersen</ownerUrl>
316+
<supportProviderName>Open Source Community</supportProviderName>
317+
<supportSummary>Support provided through community involvement.</supportSummary>
318+
<supportUrl>${project.issueManagement.url}</supportUrl>
319+
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
320+
<componentTypes>
321+
<componentType>sink</componentType>
322+
</componentTypes>
323+
<requirements>
324+
<requirement>ArangoDB 3.4+</requirement>
325+
</requirements>
326+
<tags>
327+
<tag>arangodb</tag>
328+
<tag>arango</tag>
329+
<tag>graph</tag>
330+
<tag>database</tag>
331+
<tag>nosql</tag>
332+
</tags>
333+
</configuration>
307334
</execution>
308335
</executions>
309336
</plugin>
310337

338+
<plugin>
339+
<groupId>org.apache.maven.plugins</groupId>
340+
<artifactId>maven-assembly-plugin</artifactId>
341+
</plugin>
342+
311343
<plugin>
312344
<groupId>org.apache.maven.plugins</groupId>
313345
<artifactId>maven-source-plugin</artifactId>
@@ -324,62 +356,35 @@
324356

325357
<plugin>
326358
<groupId>org.apache.maven.plugins</groupId>
327-
<artifactId>maven-gpg-plugin</artifactId>
328-
<version>1.6</version>
359+
<artifactId>maven-javadoc-plugin</artifactId>
360+
<version>3.1.1</version>
329361
<executions>
330362
<execution>
331-
<id>sign-artifacts</id>
332-
<phase>package</phase>
363+
<id>attach-javadocs</id>
333364
<goals>
334-
<goal>sign</goal>
365+
<goal>jar</goal>
335366
</goals>
336-
<configuration>
337-
<!-- Prevent gpg from using pinentry programs -->
338-
<gpgArguments>
339-
<arg>--pinentry-mode</arg>
340-
<arg>loopback</arg>
341-
</gpgArguments>
342-
</configuration>
343367
</execution>
344368
</executions>
345369
</plugin>
346370

347371
<plugin>
348-
<groupId>io.confluent</groupId>
349-
<artifactId>kafka-connect-maven-plugin</artifactId>
350-
<version>0.11.2</version>
372+
<groupId>org.apache.maven.plugins</groupId>
373+
<artifactId>maven-gpg-plugin</artifactId>
374+
<version>1.6</version>
351375
<executions>
352376
<execution>
377+
<id>sign-artifacts</id>
353378
<phase>package</phase>
354379
<goals>
355-
<goal>kafka-connect</goal>
380+
<goal>sign</goal>
356381
</goals>
357382
<configuration>
358-
<title>Kafka Connect ArangoDB</title>
359-
<documentationUrl>${project.url}/blob/master/README.md</documentationUrl>
360-
<logo>docs/logos/arangodb-avocado-logo.png</logo>
361-
<ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo>
362-
<ownerUsername>jaredpetersen</ownerUsername>
363-
<ownerType>user</ownerType>
364-
<ownerName>Jared Petersen</ownerName>
365-
<ownerUrl>https://github.com/jaredpetersen</ownerUrl>
366-
<supportProviderName>Open Source Community</supportProviderName>
367-
<supportSummary>Support provided through community involvement.</supportSummary>
368-
<supportUrl>${project.issueManagement.url}</supportUrl>
369-
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
370-
<componentTypes>
371-
<componentType>sink</componentType>
372-
</componentTypes>
373-
<requirements>
374-
<requirement>ArangoDB 3.4+</requirement>
375-
</requirements>
376-
<tags>
377-
<tag>arangodb</tag>
378-
<tag>arango</tag>
379-
<tag>graph</tag>
380-
<tag>database</tag>
381-
<tag>nosql</tag>
382-
</tags>
383+
<!-- Prevent gpg from using pinentry programs -->
384+
<gpgArguments>
385+
<arg>--pinentry-mode</arg>
386+
<arg>loopback</arg>
387+
</gpgArguments>
383388
</configuration>
384389
</execution>
385390
</executions>

0 commit comments

Comments
 (0)