Skip to content

Commit

Permalink
- git compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
Reef3rm4n committed Jun 29, 2023
1 parent e3362b0 commit c1ccf29
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Publish package to the Maven Central Repository and GitHub Packages
on:
release:
types: [created]
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
Expand Down
23 changes: 14 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
<module>es4j-infrastructure</module>
<module>es4j-stack</module>
</modules>
<name>es4j</name>
<description>A framework based on the vert.x stack that aims to facilitate the implementation of event sourcing</description>
<url>https://github.com/Reef3rm4n/es4j</url>



<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar-maven-plugin.version>3.6.0.1398</sonar-maven-plugin.version>
<flatten.maven.plugin.version>1.1.0</flatten.maven.plugin.version>
<netty-transport-native-epoll.version>4.1.93.Final</netty-transport-native-epoll.version>
<vertx.version>4.4.1</vertx.version>
<mutiny.vertx.version>3.4.2</mutiny.vertx.version>
<repository-owner>Reef3rm4n</repository-owner>
<repository-name>es4j</repository-name>
<branch-name>main</branch-name>
<github.global.server>github</github.global.server>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
</properties>

<licenses>
Expand All @@ -40,10 +40,14 @@
<distribution>repo</distribution>
</license>
</licenses>

git@github.com:Reef3rm4n/es4j.git
<scm>
<url>https://svn.apache.org/viewvc/maven</url>
<connection>scm:git:git://github.com/Reef3rm4n/es4j.git</connection>
<developerConnection>scm:git:ssh://github.com:Reef3rm4n/es4j.git</developerConnection>
<url>https://github.com/Reef3rm4n/es4j</url>
</scm>


<developers>
<developer>
<name>Benato J</name>
Expand Down Expand Up @@ -91,6 +95,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-source</id>
Expand All @@ -103,7 +108,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit c1ccf29

Please sign in to comment.