Skip to content

Commit

Permalink
feat: update groupid
Browse files Browse the repository at this point in the history
  • Loading branch information
MuizMahdi committed Jul 27, 2021
1 parent bea4042 commit 4650fce
Show file tree
Hide file tree
Showing 18 changed files with 224 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
settings.xml
target/
19 changes: 10 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.muizzmahdy</groupId>
<groupId>io.github.muizmahdi</groupId>
<artifactId>spring-jooq-utils</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<description>A set of utilities for simplifying development using Spring Webflux and JOOQ</description>
Expand Down Expand Up @@ -86,14 +86,15 @@


<distributionManagement>
<repository>
<id>muizz.spring.jooq.utils</id>
<name>Spring Jooq Utils</name>
<uniqueVersion>false</uniqueVersion>
<url>scp://repo/maven2</url>
<layout>default</layout>
</repository>
</distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>


<build>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven
#Tue Jul 27 23:53:20 GST 2021
groupId=com.muizz.spring.jooq.utils
#Wed Jul 28 00:55:06 GST 2021
groupId=io.github.muizmahdi
artifactId=spring-jooq-utils
version=1.0-SNAPSHOT
version=1.0.0
Binary file not shown.
14 changes: 14 additions & 0 deletions target/spring-jooq-utils-1.0.0.jar.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----

iQGzBAABCgAdFiEEQ9Aj7vPoyUhY1U1w2COTzjG75oMFAmEAcqoACgkQ2COTzjG7
5oObawwAoE4YxRpF6XjUz9oRa6LFbtng12ta/lebHLCIgtPEWTmvX0Jkdp+gDQ9l
T4wFimjZVFFXFZB/tkLPFV4JG3FvzatPE+FSDsl+DHM07Tgi7fdVjUZU6Gchow/u
DW5upeMSaz7gelB250k68IcTIBMxg/VUtLvwYgBW/IH2KnvMV6A51u3bjP2LLb3N
OQ4PW6sBOIi24/Qvq1Aa153AIrEbSsKFyFBs3XmPvQxrfuivLjKg3+veyIHSCMh3
u4y+RBIPAbLaqFzAeb6KjJAGW7MLVUEenA38iYFfrb9prwSU4W5Zlaq5faVMawvF
5Bxmz4UyRfiIUAige/xFaa+wbp/d8YDbSMZwiEijBbJ9suVTZRlxlrcQCJe9PfFq
6Wm57vY7s+dFLN79S8FRNPvWJB7YLNroV1kYpla7puXAB6pUAlwWdjAybytHJIcx
NkUXWTDW8CCjjCFt3qhT6rgkN1mBgSu+AhXx0VWqz51aMlfM8Wpeu2XDoxE3EPNN
TlvPPcal
=YP8K
-----END PGP SIGNATURE-----
181 changes: 181 additions & 0 deletions target/spring-jooq-utils-1.0.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.muizmahdi</groupId>
<artifactId>spring-jooq-utils</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<description>A set of utilities for simplifying development using Spring Webflux and JOOQ</description>
<version>1.0.0</version>
<url>https://github/MuizMahdi/spring-jooq-utils.com</url>
<packaging>jar</packaging>


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


<developers>
<developer>
<name>Muizz Mahdy</name>
<email>[email protected]</email>
</developer>
</developers>


<scm>
<connection>scm:git:[email protected]:MuizMahdi/Spring-JOOQ-Utils.git</connection>
<developerConnection>scm:git:ssh://github.com:MuizMahdi/Spring-JOOQ-Utils.git</developerConnection>
<url>https://github.com/MuizMahdi/Spring-JOOQ-Utils/tree/main</url>
</scm>


<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<org.projectlombok.version>1.18.16</org.projectlombok.version>
<spring.boot.version>2.5.2</spring.boot.version>
<jooq.version>3.15.1</jooq.version>
</properties>


<dependencies>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<version>${spring.boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-r2dbc</artifactId>
<version>${spring.boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jooq</artifactId>
<version>${spring.boot.version}</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

</dependencies>


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


<build>
<pluginManagement>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

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

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>

</plugins>
</pluginManagement>
</build>


<profiles>
<profile>
<id>ci-cd</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- Prevent gpg from using pinentry programs. Fixes: gpg: signing
failed: Inappropriate ioctl for device -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
14 changes: 14 additions & 0 deletions target/spring-jooq-utils-1.0.0.pom.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----

iQGzBAABCgAdFiEEQ9Aj7vPoyUhY1U1w2COTzjG75oMFAmEAcqoACgkQ2COTzjG7
5oN+dQv/aPQ1ZfgnXxirQ8+gJsmMlZOWjuFY1reTnNwbnhRHs0KW00LiZrZNLjY0
e02vqzR8YHaf47MpoeMAQV+Cj1B1+urFS5GhxnQ53sPtjyyuU3Nf/WJKrM7zS8u6
GOT3d+B3bh8PwFIyECOmqB0biqEs5Egm2KffLJxvNQugTjrUbgPdeDQiCEDqnH1f
tZe4s/urk3ALGtFMFIaDRStFWW6uZF6iehyCxU8GdVUkuwnndGfL+AG/h+DdH+gN
5ts/zM9dTnhOvYIqzU6jsIVLpVCWTJC8UUzA0qV9yfMQ8x3x7OSkgMnmJjP2pgfr
mGHyL+GCr/0lM5qWClcmB88vUMXftAzT+7dw4zQjCl1BY4YsEG1RM1oKz7yiULMV
1AXQRWXhhxN5JgbWBZgBdtIiM8eKiMgQo5S2FsNiDZ4JrkAozjKcPBxTiQiWyAsO
8aSBZjx6/oHZ0B5TMuorN7iu2IAy8iBeL5K4ySKY7iIXz2ZWSo6jpXN1MPgMGm4g
pDxnA/y+
=Pfn9
-----END PGP SIGNATURE-----

0 comments on commit 4650fce

Please sign in to comment.