Skip to content

Commit e7ade78

Browse files
Code Playground Initial Commit
1 parent 1706d6d commit e7ade78

File tree

3 files changed

+112
-13
lines changed

3 files changed

+112
-13
lines changed

.gitignore

Lines changed: 47 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,58 @@
1-
# Compiled class file
2-
*.class
1+
# Maven
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
34

4-
# Log file
5-
*.log
5+
# Eclipse
6+
.classpath
7+
.project
8+
.settings/
69

7-
# BlueJ files
8-
*.ctxt
10+
# IntelliJ
11+
.idea/
12+
*.iml
13+
*.iws
914

10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
15+
# Logs
16+
*.log
1217

13-
# Package Files #
18+
# OS-specific files
19+
.DS_Store
20+
Thumbs.db
21+
22+
# Compiled files
23+
*.class
1424
*.jar
1525
*.war
16-
*.nar
1726
*.ear
1827
*.zip
1928
*.tar.gz
2029
*.rar
2130

22-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23-
hs_err_pid*
24-
replay_pid*
31+
# Package Files
32+
*.war
33+
*.ear
34+
*.jar
35+
36+
# IntelliJ IDEA
37+
.idea/
38+
39+
# Sonar
40+
.sonar/
41+
42+
# Visual Studio Code
43+
.vscode/
44+
45+
# JetBrains
46+
*.iml
47+
48+
# Sublime Text
49+
*.sublime-workspace
50+
51+
# Log Files
52+
*.log
53+
54+
# macOS
55+
.DS_Store
56+
57+
# Thumbnails
58+
._*

pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>CodePlayground</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>17</maven.compiler.source>
13+
<maven.compiler.target>17</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<selenium.version>4.16.1</selenium.version>
16+
<restassured.version>5.4.0</restassured.version>
17+
<appium.version>9.0.0</appium.version>
18+
<testng.version>7.8.0</testng.version>
19+
<assertJ.version>3.24.2</assertJ.version>
20+
</properties>
21+
22+
<dependencies>
23+
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
24+
<dependency>
25+
<groupId>org.seleniumhq.selenium</groupId>
26+
<artifactId>selenium-java</artifactId>
27+
<version>${selenium.version}</version>
28+
</dependency>
29+
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
30+
<dependency>
31+
<groupId>io.rest-assured</groupId>
32+
<artifactId>rest-assured</artifactId>
33+
<version>${restassured.version}</version>
34+
<scope>test</scope>
35+
</dependency>
36+
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
37+
<dependency>
38+
<groupId>org.testng</groupId>
39+
<artifactId>testng</artifactId>
40+
<version>${testng.version}</version>
41+
<scope>test</scope>
42+
</dependency>
43+
<!-- https://mvnrepository.com/artifact/io.appium/java-client -->
44+
<dependency>
45+
<groupId>io.appium</groupId>
46+
<artifactId>java-client</artifactId>
47+
<version>${appium.version}</version>
48+
</dependency>
49+
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
50+
<dependency>
51+
<groupId>org.assertj</groupId>
52+
<artifactId>assertj-core</artifactId>
53+
<version>${assertJ.version}</version>
54+
<scope>test</scope>
55+
</dependency>
56+
</dependencies>
57+
58+
</project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.playground.demo.assertJ;
2+
3+
public class AssertJ {
4+
public static void main(String[] args) {
5+
System.out.println("Demo Programs on Assertion");
6+
}
7+
}

0 commit comments

Comments
 (0)