|
3 | 3 |
|
4 | 4 | <groupId>com.frameworkium</groupId> |
5 | 5 | <artifactId>Frameworkium</artifactId> |
6 | | - <version>0.0.1-SNAPSHOT</version> |
| 6 | + <version>1.0.0</version> |
7 | 7 |
|
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> |
10 | 10 | <url/> |
11 | 11 | <inceptionYear/> |
12 | 12 | <organization/> |
|
27 | 27 | <distributionManagement/> |
28 | 28 |
|
29 | 29 | <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> |
47 | 30 | <allure.version>1.4.11</allure.version> |
48 | 31 | <allure.issues.tracker.pattern/> |
49 | 32 | </properties> |
|
159 | 142 | <pluginRepositories/> |
160 | 143 |
|
161 | 144 | <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> |
173 | 145 |
|
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> |
236 | 146 | </project> |
0 commit comments