Skip to content

Commit 8c5e97e

Browse files
mattonemfrancisf
authored andcommitted
beautify xml
1 parent b53951c commit 8c5e97e

File tree

1 file changed

+92
-92
lines changed

1 file changed

+92
-92
lines changed

pom.xml

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,104 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
3-
<modelVersion>4.0.0</modelVersion>
3+
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>com.browserstack</groupId>
6-
<artifactId>testng-browserstack</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<packaging>jar</packaging>
5+
<groupId>com.browserstack</groupId>
6+
<artifactId>testng-browserstack</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
99

10-
<name>testng-browserstack</name>
11-
<url>https://www.github.com/browserstack/testng-browserstack</url>
10+
<name>testng-browserstack</name>
11+
<url>https://www.github.com/browserstack/testng-browserstack</url>
1212

13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<maven.compiler.source>1.8</maven.compiler.source>
16-
<maven.compiler.target>1.8</maven.compiler.target>
17-
<testng.version>7.4.0</testng.version>
18-
<surefire.version>2.19.1</surefire.version>
19-
<selenium.version>4.1.4</selenium.version>
20-
<json-simple.version>1.1.1</json-simple.version>
21-
<surefire.plugin.version>3.0.0-M5</surefire.plugin.version>
22-
<config.file>config/sample-local-test.testng.xml</config.file>
23-
</properties>
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<maven.compiler.source>1.8</maven.compiler.source>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
<testng.version>7.4.0</testng.version>
18+
<surefire.version>2.19.1</surefire.version>
19+
<selenium.version>4.1.4</selenium.version>
20+
<json-simple.version>1.1.1</json-simple.version>
21+
<surefire.plugin.version>3.0.0-M5</surefire.plugin.version>
22+
<config.file>config/sample-local-test.testng.xml</config.file>
23+
</properties>
2424

25-
<dependencies>
26-
<dependency>
27-
<groupId>org.testng</groupId>
28-
<artifactId>testng</artifactId>
29-
<version>${testng.version}</version>
30-
</dependency>
31-
<dependency>
32-
<groupId>org.seleniumhq.selenium</groupId>
33-
<artifactId>selenium-java</artifactId>
34-
<version>${selenium.version}</version>
35-
</dependency>
36-
</dependencies>
25+
<dependencies>
26+
<dependency>
27+
<groupId>org.testng</groupId>
28+
<artifactId>testng</artifactId>
29+
<version>${testng.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.seleniumhq.selenium</groupId>
33+
<artifactId>selenium-java</artifactId>
34+
<version>${selenium.version}</version>
35+
</dependency>
36+
</dependencies>
3737

38-
<build>
39-
<plugins>
40-
<plugin>
41-
<artifactId>maven-dependency-plugin</artifactId>
42-
<executions>
43-
<execution>
44-
<id>getClasspathFilenames</id>
45-
<goals>
46-
<goal>properties</goal>
47-
</goals>
48-
</execution>
49-
</executions>
50-
</plugin>
51-
<plugin>
52-
<groupId>org.apache.maven.plugins</groupId>
53-
<artifactId>maven-surefire-plugin</artifactId>
54-
<version>${surefire.version}</version>
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<artifactId>maven-dependency-plugin</artifactId>
42+
<executions>
43+
<execution>
44+
<id>getClasspathFilenames</id>
45+
<goals>
46+
<goal>properties</goal>
47+
</goals>
48+
</execution>
49+
</executions>
50+
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-surefire-plugin</artifactId>
54+
<version>${surefire.version}</version>
5555

56-
</plugin>
57-
<plugin>
58-
<groupId>org.apache.maven.plugins</groupId>
59-
<artifactId>maven-compiler-plugin</artifactId>
60-
<configuration>
61-
<source>${maven.compiler.source}</source>
62-
<target>${maven.compiler.target}</target>
63-
</configuration>
64-
</plugin>
65-
</plugins>
66-
</build>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-compiler-plugin</artifactId>
60+
<configuration>
61+
<source>${maven.compiler.source}</source>
62+
<target>${maven.compiler.target}</target>
63+
</configuration>
64+
</plugin>
65+
</plugins>
66+
</build>
6767

68-
<profiles>
69-
<profile>
70-
<id>sample-local-test</id>
71-
<build>
72-
<plugins>
73-
<plugin>
74-
<groupId>org.apache.maven.plugins</groupId>
75-
<artifactId>maven-surefire-plugin</artifactId>
76-
<configuration>
77-
<suiteXmlFiles>
78-
<suiteXmlFile>config/sample-local-test.testng.xml</suiteXmlFile>
79-
</suiteXmlFiles>
80-
</configuration>
81-
</plugin>
82-
</plugins>
83-
</build>
84-
</profile>
68+
<profiles>
69+
<profile>
70+
<id>sample-local-test</id>
71+
<build>
72+
<plugins>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-surefire-plugin</artifactId>
76+
<configuration>
77+
<suiteXmlFiles>
78+
<suiteXmlFile>config/sample-local-test.testng.xml</suiteXmlFile>
79+
</suiteXmlFiles>
80+
</configuration>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
</profile>
8585

86-
<profile>
87-
<id>sample-test</id>
88-
<build>
89-
<plugins>
90-
<plugin>
91-
<groupId>org.apache.maven.plugins</groupId>
92-
<artifactId>maven-surefire-plugin</artifactId>
93-
<configuration>
94-
<suiteXmlFiles>
95-
<suiteXmlFile>config/sample-test.testng.xml</suiteXmlFile>
96-
</suiteXmlFiles>
86+
<profile>
87+
<id>sample-test</id>
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-surefire-plugin</artifactId>
93+
<configuration>
94+
<suiteXmlFiles>
95+
<suiteXmlFile>config/sample-test.testng.xml</suiteXmlFile>
96+
</suiteXmlFiles>
9797

98-
</configuration>
99-
</plugin>
100-
</plugins>
101-
</build>
102-
</profile>
103-
</profiles>
98+
</configuration>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
</profile>
103+
</profiles>
104104
</project>

0 commit comments

Comments
 (0)