Skip to content

Commit

Permalink
fixed bug with code signing, updated logo, and added GitHub funding (#10
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jaredpetersen authored Feb 10, 2020
1 parent 1254664 commit 50838b6
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 46 deletions.
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: jaredpetersen
custom: https://paypal.me/jaredtpetersen
Binary file modified docs/logos/jaredpetersen-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
97 changes: 51 additions & 46 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -295,19 +295,51 @@
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<version>0.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
<goal>kafka-connect</goal>
</goals>
<configuration>
<title>Kafka Connect ArangoDB</title>
<documentationUrl>${project.url}/blob/master/README.md</documentationUrl>
<logo>docs/logos/arangodb-avocado-logo.png</logo>
<ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo>
<ownerUsername>jaredpetersen</ownerUsername>
<ownerType>user</ownerType>
<ownerName>Jared Petersen</ownerName>
<ownerUrl>https://github.com/jaredpetersen</ownerUrl>
<supportProviderName>Open Source Community</supportProviderName>
<supportSummary>Support provided through community involvement.</supportSummary>
<supportUrl>${project.issueManagement.url}</supportUrl>
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
<componentTypes>
<componentType>sink</componentType>
</componentTypes>
<requirements>
<requirement>ArangoDB 3.4+</requirement>
</requirements>
<tags>
<tag>arangodb</tag>
<tag>arango</tag>
<tag>graph</tag>
<tag>database</tag>
<tag>nosql</tag>
</tags>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand All @@ -324,62 +356,35 @@

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<id>attach-javadocs</id>
<goals>
<goal>sign</goal>
<goal>jar</goal>
</goals>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<version>0.11.2</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<goals>
<goal>kafka-connect</goal>
<goal>sign</goal>
</goals>
<configuration>
<title>Kafka Connect ArangoDB</title>
<documentationUrl>${project.url}/blob/master/README.md</documentationUrl>
<logo>docs/logos/arangodb-avocado-logo.png</logo>
<ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo>
<ownerUsername>jaredpetersen</ownerUsername>
<ownerType>user</ownerType>
<ownerName>Jared Petersen</ownerName>
<ownerUrl>https://github.com/jaredpetersen</ownerUrl>
<supportProviderName>Open Source Community</supportProviderName>
<supportSummary>Support provided through community involvement.</supportSummary>
<supportUrl>${project.issueManagement.url}</supportUrl>
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
<componentTypes>
<componentType>sink</componentType>
</componentTypes>
<requirements>
<requirement>ArangoDB 3.4+</requirement>
</requirements>
<tags>
<tag>arangodb</tag>
<tag>arango</tag>
<tag>graph</tag>
<tag>database</tag>
<tag>nosql</tag>
</tags>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 50838b6

Please sign in to comment.