Skip to content

Commit 93cbbce

Browse files
committed
Refactored to just contain the core frameworkium code. Removed the example tests.
1 parent 1265f62 commit 93cbbce

File tree

78 files changed

+3
-2167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+3
-2167
lines changed

pom.xml

Lines changed: 3 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
<groupId>com.frameworkium</groupId>
55
<artifactId>Frameworkium</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
6+
<version>1.0.0</version>
77

8-
<name>Frameworkium</name>
9-
<description>A template designed to get up and running quickly with Selenium and Appium.</description>
8+
<name>Frameworkium-core</name>
9+
<description>Frameworkium core code. Referenced by the frameworkium project, with example tests.</description>
1010
<url/>
1111
<inceptionYear/>
1212
<organization/>
@@ -27,23 +27,6 @@
2727
<distributionManagement/>
2828

2929
<properties>
30-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31-
<env.config>local</env.config>
32-
<browser/>
33-
<threads>1</threads>
34-
<seleniumGridURL/>
35-
<platform/>
36-
<platformVersion/>
37-
<deviceName/>
38-
<browserVersion/>
39-
<groups/>
40-
<sauce/>
41-
<browserStack/>
42-
<build/>
43-
<appPath/>
44-
<jiraURL/>
45-
<jiraResultVersion/>
46-
<aspectj.version>1.8.5</aspectj.version>
4730
<allure.version>1.4.11</allure.version>
4831
<allure.issues.tracker.pattern/>
4932
</properties>
@@ -159,78 +142,5 @@
159142
<pluginRepositories/>
160143

161144
<build/>
162-
163-
<reporting>
164-
<excludeDefaults>true</excludeDefaults>
165-
<plugins>
166-
<plugin>
167-
<groupId>ru.yandex.qatools.allure</groupId>
168-
<artifactId>allure-maven-plugin</artifactId>
169-
<version>2.0</version>
170-
</plugin>
171-
</plugins>
172-
</reporting>
173145

174-
<profiles>
175-
<profile>
176-
<id>selenium-tests</id>
177-
<activation>
178-
<activeByDefault>true</activeByDefault>
179-
</activation>
180-
<build>
181-
<plugins>
182-
<plugin>
183-
<groupId>org.apache.maven.plugins</groupId>
184-
<artifactId>maven-compiler-plugin</artifactId>
185-
<version>3.2</version>
186-
<configuration>
187-
<source>1.7</source>
188-
<target>1.7</target>
189-
</configuration>
190-
</plugin>
191-
<plugin>
192-
<groupId>org.apache.maven.plugins</groupId>
193-
<artifactId>maven-surefire-plugin</artifactId>
194-
<version>2.18.1</version>
195-
<configuration>
196-
<parallel>methods</parallel>
197-
<threadCount>${threads}</threadCount>
198-
<systemProperties>
199-
<!-- TODO: Can we remove these? -->
200-
<env.config>${env.config}</env.config>
201-
<browser>${browser}</browser>
202-
<screenshotDirectory>${project.build.directory}/screenshots</screenshotDirectory>
203-
<gridURL>${seleniumGridURL}</gridURL>
204-
<platform>${platform}</platform>
205-
<platformVersion>${platformVersion}</platformVersion>
206-
<browserVersion>${browserVersion}</browserVersion>
207-
<device>${device}</device>
208-
<sauce>${sauce}</sauce>
209-
<browserStack>${browserStack}</browserStack>
210-
<build>${build}</build>
211-
<appPath>${appPath}</appPath>
212-
<jiraURL>${jiraURL}</jiraURL>
213-
<jiraResultVersion>${jiraResultVersion}</jiraResultVersion>
214-
<allure.issues.tracker.pattern>${allure.issues.tracker.pattern}/browse/%s</allure.issues.tracker.pattern>
215-
</systemProperties>
216-
<includes>
217-
<include>**/*Test.java</include>
218-
<include>**/*Tests.java</include>
219-
</includes>
220-
<groups>${groups}</groups>
221-
<testFailureIgnore>false</testFailureIgnore>
222-
<argLine>-javaagent:'${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar'</argLine>
223-
</configuration>
224-
<dependencies>
225-
<dependency>
226-
<groupId>org.aspectj</groupId>
227-
<artifactId>aspectjweaver</artifactId>
228-
<version>${aspectj.version}</version>
229-
</dependency>
230-
</dependencies>
231-
</plugin>
232-
</plugins>
233-
</build>
234-
</profile>
235-
</profiles>
236146
</project>

0 commit comments

Comments
 (0)