|
20 | 20 | </license> |
21 | 21 | </licenses> |
22 | 22 |
|
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>pratik3558</id> |
| 26 | + <name>Pratik</name> |
| 27 | + <organization>Intuit</organization> |
| 28 | + </developer> |
| 29 | + <developer> |
| 30 | + <id>poojachow</id> |
| 31 | + <name>Pooja</name> |
| 32 | + <organization>Intuit</organization> |
| 33 | + </developer> |
| 34 | + <developer> |
| 35 | + <id>suthirrpreethum</id> |
| 36 | + <name>Suthirr</name> |
| 37 | + <organization>Intuit</organization> |
| 38 | + </developer> |
| 39 | + <developer> |
| 40 | + <id>ashishpandey85</id> |
| 41 | + <name>Ashish</name> |
| 42 | + <organization>Intuit</organization> |
| 43 | + </developer> |
| 44 | + <developer> |
| 45 | + <id>akupireddy</id> |
| 46 | + <name>Arun</name> |
| 47 | + <organization>Intuit</organization> |
| 48 | + </developer> |
| 49 | + <developer> |
| 50 | + <id>chinmayb0</id> |
| 51 | + <name>Chinmay</name> |
| 52 | + <organization>Intuit</organization> |
| 53 | + </developer> |
| 54 | + <developer> |
| 55 | + <id>leomoise</id> |
| 56 | + <name>Daniel</name> |
| 57 | + <organization>Intuit</organization> |
| 58 | + </developer> |
| 59 | + </developers> |
| 60 | + |
| 61 | + <scm> |
| 62 | + <connection>scm:git:git://github.com/intuit/json2jsontransformer.git</connection> |
| 63 | + <developerConnection>scm:git:ssh://github.com/intuit/json2jsontransformer.git</developerConnection> |
| 64 | + <url>https://github.com/intuit/json2jsontransformer</url> |
| 65 | + </scm> |
| 66 | + |
23 | 67 | <properties> |
24 | 68 | <java.version>11</java.version> |
25 | 69 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
43 | 87 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
44 | 88 | <maven-shade-plugin.version>3.5.1</maven-shade-plugin.version> |
45 | 89 | <jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version> |
| 90 | + <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| 91 | + <maven-javadoc-plugin.version>3.10.0</maven-javadoc-plugin.version> |
| 92 | + <maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version> |
| 93 | + <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> |
46 | 94 | </properties> |
47 | 95 |
|
48 | 96 | <dependencies> |
|
217 | 265 | </plugin> |
218 | 266 | </plugins> |
219 | 267 | </build> |
| 268 | + |
| 269 | + <profiles> |
| 270 | + <profile> |
| 271 | + <id>release</id> |
| 272 | + <build> |
| 273 | + <plugins> |
| 274 | + <!-- Attach sources JAR --> |
| 275 | + <plugin> |
| 276 | + <groupId>org.apache.maven.plugins</groupId> |
| 277 | + <artifactId>maven-source-plugin</artifactId> |
| 278 | + <version>${maven-source-plugin.version}</version> |
| 279 | + <executions> |
| 280 | + <execution> |
| 281 | + <id>attach-sources</id> |
| 282 | + <goals> |
| 283 | + <goal>jar-no-fork</goal> |
| 284 | + </goals> |
| 285 | + </execution> |
| 286 | + </executions> |
| 287 | + </plugin> |
| 288 | + |
| 289 | + <!-- Attach Javadoc JAR --> |
| 290 | + <plugin> |
| 291 | + <groupId>org.apache.maven.plugins</groupId> |
| 292 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 293 | + <version>${maven-javadoc-plugin.version}</version> |
| 294 | + <executions> |
| 295 | + <execution> |
| 296 | + <id>attach-javadocs</id> |
| 297 | + <goals> |
| 298 | + <goal>jar</goal> |
| 299 | + </goals> |
| 300 | + </execution> |
| 301 | + </executions> |
| 302 | + </plugin> |
| 303 | + |
| 304 | + <!-- GPG signing — passphrase read from MAVEN_GPG_PASSPHRASE env var --> |
| 305 | + <plugin> |
| 306 | + <groupId>org.apache.maven.plugins</groupId> |
| 307 | + <artifactId>maven-gpg-plugin</artifactId> |
| 308 | + <version>${maven-gpg-plugin.version}</version> |
| 309 | + <executions> |
| 310 | + <execution> |
| 311 | + <id>sign-artifacts</id> |
| 312 | + <phase>verify</phase> |
| 313 | + <goals> |
| 314 | + <goal>sign</goal> |
| 315 | + </goals> |
| 316 | + <configuration> |
| 317 | + <gpgArguments> |
| 318 | + <arg>--pinentry-mode</arg> |
| 319 | + <arg>loopback</arg> |
| 320 | + </gpgArguments> |
| 321 | + </configuration> |
| 322 | + </execution> |
| 323 | + </executions> |
| 324 | + </plugin> |
| 325 | + |
| 326 | + <!-- Publish to Maven Central via Sonatype Central Portal --> |
| 327 | + <plugin> |
| 328 | + <groupId>org.sonatype.central</groupId> |
| 329 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 330 | + <version>${central-publishing-maven-plugin.version}</version> |
| 331 | + <extensions>true</extensions> |
| 332 | + <configuration> |
| 333 | + <publishingServerId>central</publishingServerId> |
| 334 | + <autoPublish>true</autoPublish> |
| 335 | + <waitUntil>published</waitUntil> |
| 336 | + </configuration> |
| 337 | + </plugin> |
| 338 | + </plugins> |
| 339 | + </build> |
| 340 | + </profile> |
| 341 | + </profiles> |
220 | 342 | </project> |
0 commit comments