Skip to content
Open
Show file tree
Hide file tree
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
28 changes: 20 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testNG.suiteXmlFile>/Users/brunomedley/Documents/MedleyTeste/testng.xml</testNG.suiteXmlFile>
<aspectj.version>1.8.10</aspectj.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -119,11 +117,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>${testNG.suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -142,7 +135,7 @@
<goal>generate</goal>
</goals>
<configuration>
<projectName>MedleyTeste</projectName> <!-- Replace with project name -->
<projectName>DummyprojectCoverage</projectName> <!-- Replace with project name -->
<outputDirectory>target/cucumber-reports/advanced-reports</outputDirectory>
<cucumberOutput>target/cucumber-reports/CucumberTestReport.json</cucumberOutput>
<buildNumber>1</buildNumber>
Expand All @@ -159,6 +152,25 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
117 changes: 0 additions & 117 deletions src/main/java/pages/Autenthication.java

This file was deleted.

108 changes: 0 additions & 108 deletions src/main/java/pages/CommitsPage.java

This file was deleted.

Loading