|
4 | 4 | <groupId>io.kafkaesque.pulsar</groupId>
|
5 | 5 | <artifactId>pulsar-client-plugin</artifactId>
|
6 | 6 | <packaging>jar</packaging>
|
7 |
| - <version>1.0-SNAPSHOT</version> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + |
8 | 9 | <name>pulsar-client-plugin</name>
|
9 | 10 | <description>Plugins for Pulsar Client</description>
|
10 | 11 | <url>https://github.com/kafkaesque-io/pulsar-client-plugin</url>
|
| 12 | + |
11 | 13 | <properties>
|
12 | 14 | <maven.compiler.source>1.8</maven.compiler.source>
|
13 | 15 | <maven.compiler.target>1.8</maven.compiler.target>
|
|
16 | 18 | </properties>
|
17 | 19 | <build>
|
18 | 20 | <plugins>
|
| 21 | + <!-- Compile plugin --> |
19 | 22 | <plugin>
|
20 | 23 | <groupId>org.apache.maven.plugins</groupId>
|
21 | 24 | <artifactId>maven-compiler-plugin</artifactId>
|
|
25 | 28 | <target>1.8</target>
|
26 | 29 | </configuration>
|
27 | 30 | </plugin>
|
| 31 | + |
| 32 | + <!-- Attach source jar --> |
| 33 | + <plugin> |
| 34 | + <groupId>org.apache.maven.plugins</groupId> |
| 35 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 36 | + <version>3.1.1</version> |
| 37 | + <executions> |
| 38 | + <execution> |
| 39 | + <id>attach-javadocs</id> |
| 40 | + <goals> |
| 41 | + <goal>jar</goal> |
| 42 | + </goals> |
| 43 | + </execution> |
| 44 | + </executions> |
| 45 | + </plugin> |
| 46 | + |
| 47 | + <!-- Attach source jars--> |
| 48 | + <plugin> |
| 49 | + <artifactId>maven-source-plugin</artifactId> |
| 50 | + <version>3.2.1</version> |
| 51 | + <executions> |
| 52 | + <execution> |
| 53 | + <id>attach-source</id> |
| 54 | + <phase>compile</phase> |
| 55 | + <goals> |
| 56 | + <goal>jar-no-fork</goal> |
| 57 | + </goals> |
| 58 | + </execution> |
| 59 | + </executions> |
| 60 | + </plugin> |
| 61 | + |
| 62 | + <!-- Sign artifacts for uploading to maven central --> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-gpg-plugin</artifactId> |
| 66 | + <version>1.6</version> |
| 67 | + <executions> |
| 68 | + <execution> |
| 69 | + <id>sign-artifacts</id> |
| 70 | + <phase>verify</phase> |
| 71 | + <goals> |
| 72 | + <goal>sign</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-release-plugin</artifactId> |
| 81 | + <version>3.0.0-M1</version> |
| 82 | + </plugin> |
| 83 | + |
28 | 84 | </plugins>
|
29 | 85 | </build>
|
30 | 86 | <dependencies>
|
|
92 | 148 | </license>
|
93 | 149 | </licenses>
|
94 | 150 | <scm>
|
95 |
| - < connection>scm: [email protected]:kafkaesque-io/pulsar-client-plugin.git</ connection> |
96 |
| - < developerConnection>scm: [email protected]:kafkaesque-io/pulsar-client-plugin.git</ developerConnection> |
| 151 | + <connection>scm:git:ssh://git@github.com:kafkaesque-io/pulsar-client-plugin.git</connection> |
| 152 | + <developerConnection>scm:git:ssh://git@github.com:kafkaesque-io/pulsar-client-plugin.git</developerConnection> |
97 | 153 | <url>https://github.com/kafkaesque-io/pulsar-client-plugin</url>
|
98 | 154 | </scm>
|
99 | 155 | <developers>
|
|
105 | 161 | </developer>
|
106 | 162 | </developers>
|
107 | 163 |
|
| 164 | + <distributionManagement> |
| 165 | + <snapshotRepository> |
| 166 | + <id>sonatype-nexus-snapshots</id> |
| 167 | + <name>Sonatype Nexus Snapshots</name> |
| 168 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 169 | + </snapshotRepository> |
| 170 | + <repository> |
| 171 | + <id>sonatype-nexus-staging</id> |
| 172 | + <name>Nexus Release Repository</name> |
| 173 | + <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 174 | + </repository> |
| 175 | + <downloadUrl>https://oss.sonatype.org/content/groups/public/org/knowm/xchart</downloadUrl> |
| 176 | + </distributionManagement> |
| 177 | + |
108 | 178 | </project>
|
0 commit comments