Skip to content

Commit

Permalink
Merge pull request #69 from zebrunner/develop
Browse files Browse the repository at this point in the history
1.0.0 archetype
  • Loading branch information
vdelendik committed May 16, 2023
2 parents b55f8a3 + 57c4695 commit a92fc7b
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 17 deletions.
22 changes: 11 additions & 11 deletions archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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>com.qaprosoft</groupId>
<groupId>com.zebrunner</groupId>
<artifactId>carina-cucumber-archetype</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
Expand Down Expand Up @@ -72,15 +72,15 @@
</build>

<distributionManagement>
<repository>
<id>QPS_Nexus</id>
<name>Qaprosoft Releases</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>QPS_Nexus</id>
<name>Qaprosoft Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>Maven_Nexus</id>
<name>Maven Releases</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>ZBR_Nexus</id>
<name>Zebrunner Snapshots</name>
<url>https://nexus.zebrunner.dev/repository/ce-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>
4 changes: 2 additions & 2 deletions archetype/src/main/resources/archetype-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<carina-cucumber_version>8.0.0</carina-cucumber_version>
<carina-cucumber_version>1.0.0</carina-cucumber_version>
<java.version>11</java.version>
<zebrunner-agent.version>1.9.3</zebrunner-agent.version>
<suite>helloWorld</suite>
Expand All @@ -36,7 +36,7 @@

<dependencies>
<dependency>
<groupId>com.qaprosoft</groupId>
<groupId>com.zebrunner</groupId>
<artifactId>carina-cucumber</artifactId>
<version>${carina-cucumber_version}</version>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#set( $symbol_escape = '\' )
package ${package}.carina.demo;

import com.qaprosoft.carina.core.foundation.cucumber.CucumberBaseTest;
import com.zebrunner.carina.cucumber.CucumberBaseTest;

import io.cucumber.testng.CucumberOptions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.slf4j.LoggerFactory;
import org.testng.annotations.Test;

import com.qaprosoft.carina.core.foundation.IAbstractTest;
import com.zebrunner.carina.core.IAbstractTest;
import com.zebrunner.carina.core.registrar.ownership.MethodOwner;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.apache.commons.lang3.StringUtils;
import org.testng.Assert;

import com.qaprosoft.carina.core.foundation.cucumber.CucumberRunner;
import com.zebrunner.carina.cucumber.CucumberRunner;
import ${package}.carina.demo.gui.components.NewsItem;
import ${package}.carina.demo.gui.pages.HomePage;
import ${package}.carina.demo.gui.pages.NewsPage;
Expand Down
32 changes: 31 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,38 @@
<artifactId>carina-cucumber</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Carina Cucumber</name>
<description />
<description>Carina Cucumber module for web, mobile testing.</description>
<url>https://www.carina-core.io/</url>

<licenses>
<license>
<name>Apache Software License v2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Vadim Delendik</name>
<email>vdelendik@zebrunner.com</email>
<organization>Zebrunner</organization>
<organizationUrl>https://zebrunner.com</organizationUrl>
</developer>
<developer>
<name>Andrei Kamarouski</name>
<email>akamarouski@zebrunner.com</email>
<organization>Zebrunner</organization>
<organizationUrl>https://zebrunner.com</organizationUrl>
</developer>
</developers>

<scm>
<url>https://github.com/zebrunner/carina-cucumber.git</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
Expand Down

0 comments on commit a92fc7b

Please sign in to comment.