Skip to content

Commit 400ee9f

Browse files
committed
Ability to deploy to Maven Central
1 parent aeac161 commit 400ee9f

1 file changed

Lines changed: 121 additions & 0 deletions

File tree

pom.xml

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@
1919

2020
<modelVersion>4.0.0</modelVersion>
2121

22+
<description>This Java library aims to ease the generation of datasets to test SQL queries. It produces INSERT statements taking account of integrity constraints.</description>
23+
24+
<url>https://github.com/quick-perf/sql-test-data-generator</url>
25+
2226
<groupId>org.quickperf</groupId>
2327
<artifactId>sql-test-data-generator</artifactId>
2428
<version>0.1-SNASPHOT</version>
29+
<name>SQL test data generator</name>
2530
<inceptionYear>2021</inceptionYear>
2631

2732
<properties>
@@ -286,4 +291,120 @@
286291
</plugin>
287292
</plugins>
288293
</build>
294+
295+
<issueManagement>
296+
<system>github</system>
297+
<url>https://github.com/quick-perf/sql-test-data-generator</url>
298+
</issueManagement>
299+
300+
<profiles>
301+
<profile>
302+
<id>release</id>
303+
<build>
304+
<plugins>
305+
<plugin>
306+
<artifactId>maven-gpg-plugin</artifactId>
307+
<version>1.6</version>
308+
<executions>
309+
<execution>
310+
<id>sign-artifacts</id>
311+
<phase>verify</phase>
312+
<goals>
313+
<goal>sign</goal>
314+
</goals>
315+
</execution>
316+
</executions>
317+
<configuration>
318+
<executable>gpg</executable>
319+
</configuration>
320+
</plugin>
321+
<plugin>
322+
<artifactId>maven-source-plugin</artifactId>
323+
<version>3.2.1</version>
324+
<executions>
325+
<execution>
326+
<id>attach-sources</id>
327+
<goals>
328+
<goal>jar</goal>
329+
</goals>
330+
</execution>
331+
</executions>
332+
</plugin>
333+
<plugin>
334+
<artifactId>maven-javadoc-plugin</artifactId>
335+
<version>3.0.1</version>
336+
<executions>
337+
<execution>
338+
<id>attach-javadocs</id>
339+
<goals>
340+
<goal>jar</goal>
341+
</goals>
342+
</execution>
343+
</executions>
344+
<configuration>
345+
<failOnError>true</failOnError>
346+
<show>public</show>
347+
</configuration>
348+
</plugin>
349+
<plugin>
350+
<groupId>org.sonatype.plugins</groupId>
351+
<artifactId>nexus-staging-maven-plugin</artifactId>
352+
<version>1.6.7</version>
353+
<extensions>true</extensions>
354+
<configuration>
355+
<serverId>ossrh</serverId>
356+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
357+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
358+
</configuration>
359+
</plugin>
360+
<plugin>
361+
<artifactId>maven-release-plugin</artifactId>
362+
<version>3.0.0-M1</version>
363+
<configuration>
364+
<allowTimestampedSnapshots>true</allowTimestampedSnapshots> <!--Because of junit4-spring-base-tests-->
365+
<autoVersionSubmodules>true</autoVersionSubmodules>
366+
<useReleaseProfile>false</useReleaseProfile>
367+
<releaseProfiles>release</releaseProfiles>
368+
<goals>deploy</goals>
369+
<tagNameFormat>release-@{project.version}</tagNameFormat>
370+
</configuration>
371+
</plugin>
372+
</plugins>
373+
</build>
374+
<distributionManagement>
375+
<snapshotRepository>
376+
<id>ossrh</id>
377+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
378+
</snapshotRepository>
379+
<repository>
380+
<id>ossrh</id>
381+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
382+
</repository>
383+
</distributionManagement>
384+
</profile>
385+
</profiles>
386+
387+
<scm>
388+
<connection>scm:git:https://github.com/quick-perf/sql-test-data-generator.git</connection>
389+
<developerConnection>scm:git:git@github.com:quick-perf/sql-test-data-generator.git</developerConnection>
390+
<url>https://github.com/quick-perf/sql-test-data-generator</url>
391+
<tag>HEAD</tag>
392+
</scm>
393+
394+
<licenses>
395+
<license>
396+
<name>The Apache Software License, Version 2.0</name>
397+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
398+
</license>
399+
</licenses>
400+
401+
<developers>
402+
<developer>
403+
<id>jeanbisutti</id>
404+
<name>Jean Bisutti</name>
405+
<email>jean.bisutti@gmail.com</email>
406+
<timezone>+1</timezone>
407+
</developer>
408+
</developers>
409+
289410
</project>

0 commit comments

Comments
 (0)