|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
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"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>com.microsoft.mssql</groupId> |
|
26 | 26 | <scope>test</scope> |
27 | 27 | </dependency> |
28 | 28 | <!-- 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> |
34 | 34 | <dependency> |
35 | 35 | <groupId>org.apache.httpcomponents</groupId> |
36 | 36 | <artifactId>httpmime</artifactId> |
|
39 | 39 | </dependencies> |
40 | 40 |
|
41 | 41 | <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) --> |
43 | 43 | <plugins> |
44 | 44 | <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
45 | 45 | <plugin> |
|
50 | 50 | <plugin> |
51 | 51 | <artifactId>maven-resources-plugin</artifactId> |
52 | 52 | <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> |
71 | 90 | </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> |
91 | 91 | <plugin> |
92 | 92 | <artifactId>maven-compiler-plugin</artifactId> |
93 | 93 | <version>3.8.0</version> |
|
0 commit comments