Skip to content

Commit 33e3799

Browse files
committed
Formatting xml
1 parent abb04fe commit 33e3799

1 file changed

Lines changed: 45 additions & 45 deletions

File tree

  • samples/features/sql-big-data-cluster/connectivity/webhdfs-java-client

samples/features/sql-big-data-cluster/connectivity/webhdfs-java-client/pom.xml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
3+
<project xmlns="http://maven.apache.org/POM/4.0.0"
4+
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">
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.microsoft.mssql</groupId>
@@ -26,11 +26,11 @@
2626
<scope>test</scope>
2727
</dependency>
2828
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
29-
<dependency>
30-
<groupId>org.apache.httpcomponents</groupId>
31-
<artifactId>httpclient</artifactId>
32-
<version>4.5.13</version>
33-
</dependency>
29+
<dependency>
30+
<groupId>org.apache.httpcomponents</groupId>
31+
<artifactId>httpclient</artifactId>
32+
<version>4.5.13</version>
33+
</dependency>
3434
<dependency>
3535
<groupId>org.apache.httpcomponents</groupId>
3636
<artifactId>httpmime</artifactId>
@@ -39,7 +39,7 @@
3939
</dependencies>
4040

4141
<build>
42-
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
42+
<pluginManagement> <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
4343
<plugins>
4444
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
4545
<plugin>
@@ -50,44 +50,44 @@
5050
<plugin>
5151
<artifactId>maven-resources-plugin</artifactId>
5252
<version>3.0.2</version>
53-
<executions>
54-
<execution>
55-
<id>copy-resources</id>
56-
<phase>validate</phase>
57-
<goals>
58-
<goal>copy-resources</goal>
59-
</goals>
60-
<configuration>
61-
<outputDirectory>${basedir}/target/Crunchify</outputDirectory>
62-
<resources>
63-
<resource>
64-
<directory>resources</directory>
65-
<filtering>true</filtering>
66-
</resource>
67-
</resources>
68-
</configuration>
69-
</execution>
70-
</executions>
53+
<executions>
54+
<execution>
55+
<id>copy-resources</id>
56+
<phase>validate</phase>
57+
<goals>
58+
<goal>copy-resources</goal>
59+
</goals>
60+
<configuration>
61+
<outputDirectory>${basedir}/target/Crunchify</outputDirectory>
62+
<resources>
63+
<resource>
64+
<directory>resources</directory>
65+
<filtering>true</filtering>
66+
</resource>
67+
</resources>
68+
</configuration>
69+
</execution>
70+
</executions>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-dependency-plugin</artifactId>
75+
<executions>
76+
<execution>
77+
<id>copy-dependencies</id>
78+
<phase>prepare-package</phase>
79+
<goals>
80+
<goal>copy-dependencies</goal>
81+
</goals>
82+
<configuration>
83+
<outputDirectory>${project.build.directory}/Crunchify/lib</outputDirectory>
84+
<overWriteReleases>false</overWriteReleases>
85+
<overWriteSnapshots>false</overWriteSnapshots>
86+
<overWriteIfNewer>true</overWriteIfNewer>
87+
</configuration>
88+
</execution>
89+
</executions>
7190
</plugin>
72-
<plugin>
73-
<groupId>org.apache.maven.plugins</groupId>
74-
<artifactId>maven-dependency-plugin</artifactId>
75-
<executions>
76-
<execution>
77-
<id>copy-dependencies</id>
78-
<phase>prepare-package</phase>
79-
<goals>
80-
<goal>copy-dependencies</goal>
81-
</goals>
82-
<configuration>
83-
<outputDirectory>${project.build.directory}/Crunchify/lib</outputDirectory>
84-
<overWriteReleases>false</overWriteReleases>
85-
<overWriteSnapshots>false</overWriteSnapshots>
86-
<overWriteIfNewer>true</overWriteIfNewer>
87-
</configuration>
88-
</execution>
89-
</executions>
90-
</plugin>
9191
<plugin>
9292
<artifactId>maven-compiler-plugin</artifactId>
9393
<version>3.8.0</version>

0 commit comments

Comments
 (0)