Skip to content

Commit bfefb81

Browse files
committed
adding to the pom.xml, metadata needed for release
1 parent 5fb8050 commit bfefb81

File tree

1 file changed

+91
-1
lines changed

1 file changed

+91
-1
lines changed

pom.xml

Lines changed: 91 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,30 @@
1010
<packaging>maven-plugin</packaging>
1111

1212
<name>SQL Schema Script File to JPA Code Generator Maven Plugin</name>
13+
<url>https://github.com/ngbsn/sqlscript2jpa-codegen</url>
14+
15+
<licenses>
16+
<license>
17+
<name>MIT License</name>
18+
<url>http://www.opensource.org/licenses/mit-license.php</url>
19+
</license>
20+
</licenses>
21+
22+
<developers>
23+
<developer>
24+
<id>ngbsn</id>
25+
<name>Nagabhushan Srinivasa</name>
26+
<email>nagabhushan.srinivasa@gmail.com</email>
27+
<organizationUrl>https://github.com/ngbsn</organizationUrl>
28+
</developer>
29+
</developers>
30+
31+
<scm>
32+
<connection>scm:git:https://github.com/ngbsn/sqlscript2jpa-codegen.git</connection>
33+
<developerConnection>scm:git:https://github.com/ngbsn/sqlscript2jpa-codegen.git</developerConnection>
34+
<url>https://github.com/ngbsn/sqlscript2jpa-codegen</url>
35+
</scm>
36+
1337

1438
<properties>
1539
<maven.compiler.source>17</maven.compiler.source>
@@ -171,7 +195,73 @@
171195
</execution>
172196
</executions>
173197
</plugin>
198+
<!-- <plugin>-->
199+
<!-- <groupId>org.apache.maven.plugins</groupId>-->
200+
<!-- <artifactId>maven-gpg-plugin</artifactId>-->
201+
<!-- <version>3.1.0</version>-->
202+
<!-- <executions>-->
203+
<!-- <execution>-->
204+
<!-- <id>sign-artifacts</id>-->
205+
<!-- <phase>verify</phase>-->
206+
<!-- <goals>-->
207+
<!-- <goal>sign</goal>-->
208+
<!-- </goals>-->
209+
<!-- <configuration>-->
210+
<!-- <gpgArguments>-->
211+
<!-- <arg>&#45;&#45;pinentry-mode</arg>-->
212+
<!-- <arg>loopback</arg>-->
213+
<!-- </gpgArguments>-->
214+
<!-- </configuration>-->
215+
<!-- </execution>-->
216+
<!-- </executions>-->
217+
<!-- </plugin>-->
218+
<plugin>
219+
<groupId>org.apache.maven.plugins</groupId>
220+
<artifactId>maven-javadoc-plugin</artifactId>
221+
<version>3.6.0</version>
222+
<executions>
223+
<execution>
224+
<id>attach-javadocs</id>
225+
<goals>
226+
<goal>jar</goal>
227+
</goals>
228+
</execution>
229+
</executions>
230+
</plugin>
231+
<plugin>
232+
<groupId>org.apache.maven.plugins</groupId>
233+
<artifactId>maven-source-plugin</artifactId>
234+
<version>3.3.0</version>
235+
<executions>
236+
<execution>
237+
<id>attach-sources</id>
238+
<goals>
239+
<goal>jar</goal>
240+
</goals>
241+
</execution>
242+
</executions>
243+
</plugin>
244+
<plugin>
245+
<groupId>org.sonatype.plugins</groupId>
246+
<artifactId>nexus-staging-maven-plugin</artifactId>
247+
<version>1.6.13</version>
248+
<extensions>true</extensions>
249+
<configuration>
250+
<serverId>ossrh</serverId>
251+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
252+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
253+
</configuration>
254+
</plugin>
174255
</plugins>
175256
</build>
176-
257+
<distributionManagement>
258+
<snapshotRepository>
259+
<id>ossrh</id>
260+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
261+
</snapshotRepository>
262+
<repository>
263+
<id>ossrh</id>
264+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
265+
</repository>
266+
</distributionManagement>
177267
</project>

0 commit comments

Comments
 (0)