|
5 | 5 | <artifactId>aws-sigv4-auth-cassandra-java-driver-plugin</artifactId> |
6 | 6 | <version>4.0.0</version> |
7 | 7 | <name>AWS SigV4 Auth Java Driver 4.x Plugin</name> |
| 8 | + <description>A Plugin to allow SigV4 authentication for Java Cassandra drivers with Amazon MCS</description> |
| 9 | + <url>https://github.com/aws/aws-sigv4-auth-cassandra-java-driver-plugin</url> |
8 | 10 | <organization> |
9 | 11 | <name>Amazon Web Services</name> |
10 | 12 | <url>https://aws.amazon.com</url> |
11 | 13 | </organization> |
12 | 14 | <inceptionYear>2020</inceptionYear> |
13 | 15 |
|
| 16 | + <scm> |
| 17 | + <connection>scm:git:https://github.com/aws/aws-sigv4-auth-cassandra-java-driver-plugin.git</connection> |
| 18 | + <developerConnection>scm:git:git@github.com:aws/aws-sigv4-auth-cassandra-java-driver-plugin.git</developerConnection> |
| 19 | + <url>https://github.com/aws/aws-sigv4-auth-cassandra-java-driver-plugin</url> |
| 20 | + </scm> |
| 21 | + |
14 | 22 | <licenses> |
15 | 23 | <license> |
16 | 24 | <name>Apache License, Version 2.0</name> |
|
75 | 83 | </compilerArgs> |
76 | 84 | </configuration> |
77 | 85 | </plugin> |
| 86 | + <plugin> |
| 87 | + <groupId>org.apache.maven.plugins</groupId> |
| 88 | + <artifactId>maven-source-plugin</artifactId> |
| 89 | + <version>2.2.1</version> |
| 90 | + <executions> |
| 91 | + <execution> |
| 92 | + <id>attach-sources</id> |
| 93 | + <goals> |
| 94 | + <goal>jar-no-fork</goal> |
| 95 | + </goals> |
| 96 | + </execution> |
| 97 | + </executions> |
| 98 | + </plugin> |
78 | 99 | <plugin> |
79 | 100 | <groupId>org.apache.maven.plugins</groupId> |
80 | 101 | <artifactId>maven-javadoc-plugin</artifactId> |
81 | 102 | <version>3.1.1</version> |
82 | 103 | <configuration> |
83 | 104 | </configuration> |
| 105 | + <executions> |
| 106 | + <execution> |
| 107 | + <id>attach-javadocs</id> |
| 108 | + <goals> |
| 109 | + <goal>jar</goal> |
| 110 | + </goals> |
| 111 | + </execution> |
| 112 | + </executions> |
| 113 | + </plugin> |
| 114 | + <plugin> |
| 115 | + <groupId>org.apache.maven.plugins</groupId> |
| 116 | + <artifactId>maven-gpg-plugin</artifactId> |
| 117 | + <version>1.6</version> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <id>sign-artifacts</id> |
| 121 | + <phase>verify</phase> |
| 122 | + <goals> |
| 123 | + <goal>sign</goal> |
| 124 | + </goals> |
| 125 | + </execution> |
| 126 | + </executions> |
| 127 | + </plugin> |
| 128 | + <plugin> |
| 129 | + <groupId>org.sonatype.plugins</groupId> |
| 130 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 131 | + <version>1.6.8</version> |
| 132 | + <extensions>true</extensions> |
| 133 | + <configuration> |
| 134 | + <serverId>sonatype-nexus-staging</serverId> |
| 135 | + <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
| 136 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 137 | + </configuration> |
84 | 138 | </plugin> |
85 | 139 | <plugin> |
86 | 140 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments