Skip to content

Commit

Permalink
version 2.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hironico committed Jun 7, 2024
1 parent 47c79d4 commit e1ea723
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 120 deletions.
4 changes: 2 additions & 2 deletions hironico-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<groupId>net.hironico</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<artifactId>hironico-common</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
<name>hironico.net common utilities library</name>

<packaging>jar</packaging>
Expand Down
114 changes: 2 additions & 112 deletions hironico-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,57 +4,14 @@
<parent>
<groupId>net.hironico</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<artifactId>hironico-minisql-dist</artifactId>
<version>2.27.0</version>

<name>${project.groupId}:${project.artifactId}</name>

<description>
The Hironico Mini SQL tool is packaged with all required dependencies into a single JAR.
It contains standard drivers for Oracle, Postgresql, MSSQL and Sybase databases but you can refer
to specific JDBC drivers in the tool configuration.
</description>

<url>https://github.com/hironico/mini-sql</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<name>hironico</name>
<email>hironico@outlook.com</email>
<organization>hironico.net</organization>
<organizationUrl>https://github.com/hironico</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/hironico/mini-sql.git</connection>
<developerConnection>scm:git:ssh://github.com:hironico/mini-sql.git</developerConnection>
<url>http://github.com/hironico/mini-sql/tree/master</url>
</scm>
<version>2.27.1</version>

<packaging>jar</packaging>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -111,73 +68,6 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>

<!-- see https://central.sonatype.org/publish/requirements/gpg/ -->
<!-- generate a keypair using gpg or Kleopatra -->
<!-- send the key to a keyserver supported by central repo. -->
<!-- behind firewall use the following key server hkp://keys.openpgp.org:80 -->
<!-- For Github action you need to follow this tutorial : -->
<!-- https://itnext.io/publishing-artifacts-to-maven-central-using-github-actions-a-step-by-step-guide-fd65ef075fd4 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 2 additions & 2 deletions hironico-minisql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<groupId>net.hironico</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<artifactId>hironico-minisql</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>

<name>hironico.net minisql tools</name>

Expand Down
114 changes: 110 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,50 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.hironico</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>

<name>hironico.net parent</name>
<name>${project.groupId}:${project.artifactId}</name>

<description>This is the parent pom for Hironico's Mini SQL. To get a reday to execute JAR file,
kick a build of the hironico-dist module.</description>
<description>
The Hironico Mini SQL tool is packaged with all required dependencies into a single JAR.
It contains standard drivers for Oracle, Postgresql, MSSQL and Sybase databases but you can refer
to specific JDBC drivers in the tool configuration.
</description>

<url>https://github.com/hironico/mini-sql</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<name>hironico</name>
<email>hironico@outlook.com</email>
<organization>hironico.net</organization>
<organizationUrl>https://github.com/hironico</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/hironico/mini-sql.git</connection>
<developerConnection>scm:git:ssh://github.com:hironico/mini-sql.git</developerConnection>
<url>http://github.com/hironico/mini-sql/tree/master</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -51,6 +89,74 @@
<target>${maven.compiler.target}</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>

<!-- see https://central.sonatype.org/publish/requirements/gpg/ -->
<!-- generate a keypair using gpg or Kleopatra -->
<!-- send the key to a keyserver supported by central repo. -->
<!-- behind firewall use the following key server hkp://keys.openpgp.org:80 -->
<!-- For Github action you need to follow this tutorial : -->
<!-- https://itnext.io/publishing-artifacts-to-maven-central-using-github-actions-a-step-by-step-guide-fd65ef075fd4 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit e1ea723

Please sign in to comment.