Skip to content

Commit

Permalink
Change version and add maven plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
hadielmougy committed May 21, 2024
1 parent e6a1fc4 commit d0ffcba
Showing 1 changed file with 78 additions and 3 deletions.
81 changes: 78 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,36 @@

<groupId>io.constx</groupId>
<artifactId>Actrix</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.1</version>


<name>Actrix</name>
<description>Actor Model library for Java</description>
<url>https://github.com/hadielmougy/actrix</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Hadi Elmougy</name>
<email>[email protected]</email>
<organization>Constx</organization>
<organizationUrl>constx.io</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/hadielmougy/actrix.git</connection>
<developerConnection>scm:git:ssh://github.com:hadielmougy/actrix.git</developerConnection>
<url>http://github.com/hadielmougy/actrix/tree/master</url>
</scm>


<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
Expand All @@ -30,6 +55,56 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit d0ffcba

Please sign in to comment.