Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
294 changes: 147 additions & 147 deletions modules/cucumblan-ui/pom.xml
Original file line number Diff line number Diff line change
@@ -1,148 +1,148 @@
<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.virtualan</groupId>
<artifactId>cucumblan-ui</artifactId>
<version>1.3.6-SNAPSHOT</version>
<packaging>jar</packaging>
<name>cucumblan-ui</name>
<properties>
<cucumblan-utils.version>1.1.9-SNAPSHOT</cucumblan-utils.version>
<selenium.version>4.1.1</selenium.version>
<mapson.version>1.1.12</mapson.version>
<junit.version>5.8.2</junit.version>
<cucumber.version>7.1.1</cucumber.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<description>
Cucumblan-ui is a cucumber and selenium based test automation framework that supports Behavior Driven
Development (BDD),
allowing users to create feature using predefined step definition with low code for UI. It works based on
the Gherkin Domain Specific Language (DSL). This simple but powerful framework while keeping it comprehensible
to even non-technical(product owner, business analyst and domain experts) users.
</description>
<url>https://www.cucumblan.io/</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://[email protected]:virtualansoftware/cucumblan.git</connection>
<developerConnection>scm:git:ssh://[email protected]/virtualansoftware/cucumblan.git</developerConnection>
<url>https://github.com/virtualansoftware/cucumblan.git</url>
<tag>0.0.1</tag>
</scm>
<developers>
<!-- original author of the project -->
<developer>
<id>elans3</id>
<name>Elan Thangamani</name>
<email>[email protected]</email>
<organization>Virtualan Software</organization>
<organizationUrl>https://www.virtualan.io</organizationUrl>
</developer>
</developers>
<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>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>8</source>
</configuration>
<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-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>7.6.0</version>
</dependency>
<dependency>
<groupId>io.virtualan</groupId>
<artifactId>cucumblan-utils</artifactId>
<version>${cucumblan-utils.version}</version>
</dependency>
<!-- screen recorder -->
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>monte-repack</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>compiler</artifactId>
<version>2.21ea81</version>
</dependency>
</dependencies>
<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.virtualan</groupId>
<artifactId>cucumblan-ui</artifactId>
<version>1.3.6-SNAPSHOT</version>
<packaging>jar</packaging>
<name>cucumblan-ui</name>
<properties>
<cucumblan-utils.version>1.1.9-SNAPSHOT</cucumblan-utils.version>
<selenium.version>4.1.1</selenium.version>
<mapson.version>1.1.12</mapson.version>
<junit.version>5.8.2</junit.version>
<cucumber.version>7.1.1</cucumber.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<description>
Cucumblan-ui is a cucumber and selenium based test automation framework that supports Behavior Driven
Development (BDD),
allowing users to create feature using predefined step definition with low code for UI. It works based on
the Gherkin Domain Specific Language (DSL). This simple but powerful framework while keeping it comprehensible
to even non-technical(product owner, business analyst and domain experts) users.
</description>
<url>https://www.cucumblan.io/</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://[email protected]:virtualansoftware/cucumblan.git</connection>
<developerConnection>scm:git:ssh://[email protected]/virtualansoftware/cucumblan.git</developerConnection>
<url>https://github.com/virtualansoftware/cucumblan.git</url>
<tag>0.0.1</tag>
</scm>
<developers>
<!-- original author of the project -->
<developer>
<id>elans3</id>
<name>Elan Thangamani</name>
<email>[email protected]</email>
<organization>Virtualan Software</organization>
<organizationUrl>https://www.virtualan.io</organizationUrl>
</developer>
</developers>
<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>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>8</source>
</configuration>
<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-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>8.1.0</version>
</dependency>
<dependency>
<groupId>io.virtualan</groupId>
<artifactId>cucumblan-utils</artifactId>
<version>${cucumblan-utils.version}</version>
</dependency>
<!-- screen recorder -->
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>monte-repack</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>compiler</artifactId>
<version>2.21ea81</version>
</dependency>
</dependencies>
</project>