Skip to content

Commit

Permalink
updated pom
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayswal committed Feb 18, 2024
1 parent beb7c65 commit c693846
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
java-version: '8'
distribution: 'temurin'
server-id: sonatype-nexus-snapshots
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
#- name: Publish package
Expand Down
25 changes: 21 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
<packaging>pom</packaging>
<name>QMetry Automation Framework</name>
<url>https://github.com/qmetry/qaf</url>
<description>Functional test automation framework for web, mobile-web, mobile native and web-service</description>
<licenses>
<license>
<name>MIT License</name>
Expand All @@ -24,13 +27,21 @@
<name>QMetry</name>
<url>https://github.com/qmetry</url>
</organization>
<scm>
<connection>scm:git:git://github.com/qmetry/qaf.git</connection>
<developerConnection>scm:git:[email protected]:qmetry/qaf.git</developerConnection>
<url>https://github.com/qmetry/qaf</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/qmetry/qaf/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version-num>4.1</version-num>
<build-num>0-SNAPSHOT</build-num>
<version-num>4.0.0-SNAPSHOT</version-num>
<skip.it>true</skip.it>
</properties>

Expand Down Expand Up @@ -390,11 +401,17 @@
<qaf-Type>${qaf.type}</qaf-Type>
</manifestEntries>
</manifestSection>

</manifestSections>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
2 changes: 1 addition & 1 deletion qaf-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf-core</artifactId>
<description>Functional test automation framework for web, mobile-web, mobile native and web-service</description>
Expand Down
2 changes: 1 addition & 1 deletion qaf-playwright/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf-playwright</artifactId>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion qaf-selenium/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf-selenium</artifactId>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion qaf-testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf-testng</artifactId>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion qaf-ws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf-ws</artifactId>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion qaf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.qmetry</groupId>
<artifactId>qaf-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>${version-num}</version>
</parent>
<artifactId>qaf</artifactId>
<packaging>pom</packaging>
Expand Down

0 comments on commit c693846

Please sign in to comment.