1- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2- 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 >
1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
45
5- <parent >
6- <groupId >org.utplsql</groupId >
7- <artifactId >utplsql-maven-plugin-parent</artifactId >
8- <version >3.1.0-SNAPSHOT</version >
9- </parent >
10- <name >utplsql-maven-plugin Integration tests</name >
11- <artifactId >utplsql-maven-plugin-it</artifactId >
12- <packaging >jar</packaging >
6+ <parent >
7+ <groupId >org.utplsql</groupId >
8+ <artifactId >utplsql-maven-plugin-parent</artifactId >
9+ <version >3.1.0-SNAPSHOT</version >
10+ </parent >
11+ <name >utplsql-maven-plugin Integration tests</name >
12+ <artifactId >utplsql-maven-plugin-it</artifactId >
13+ <packaging >jar</packaging >
1314
14- <properties >
15- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
16- <java .version>1.8</java .version>
17- </properties >
15+ <properties >
16+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17+ <java .version>1.8</java .version>
18+ </properties >
1819
19- <dependencies >
20- <dependency >
21- <groupId >org.apache.maven</groupId >
22- <artifactId >maven-model</artifactId >
23- <version >3.0.2</version >
24- </dependency >
25- <dependency >
26- <groupId >commons-io</groupId >
27- <artifactId >commons-io</artifactId >
28- <version >2.5</version >
29- </dependency >
30- <dependency >
31- <groupId >org.apache.maven.shared</groupId >
32- <artifactId >maven-verifier</artifactId >
33- <version >1.6</version >
34- </dependency >
35- <dependency >
36- <groupId >junit</groupId >
37- <artifactId >junit</artifactId >
38- <version >4.12</version >
39- <scope >test</scope >
40- </dependency >
41- </dependencies >
20+ <dependencies >
21+ <dependency >
22+ <groupId >org.apache.maven</groupId >
23+ <artifactId >maven-model</artifactId >
24+ <version >3.0.2</version >
25+ </dependency >
26+ <dependency >
27+ <groupId >commons-io</groupId >
28+ <artifactId >commons-io</artifactId >
29+ <version >2.5</version >
30+ </dependency >
31+ <dependency >
32+ <groupId >org.apache.maven.shared</groupId >
33+ <artifactId >maven-verifier</artifactId >
34+ <version >1.6</version >
35+ </dependency >
36+ <dependency >
37+ <groupId >junit</groupId >
38+ <artifactId >junit</artifactId >
39+ <version >4.12</version >
40+ <scope >test</scope >
41+ </dependency >
42+ </dependencies >
4243
43- <build >
44- <plugins >
45- <plugin >
46- <groupId >org.apache.maven.plugins</groupId >
47- <artifactId >maven-install-plugin</artifactId >
48- <version >2.5.2</version >
49- <configuration >
50- <skip >true</skip >
51- </configuration >
52- </plugin >
44+ <build >
45+ <plugins >
46+ <plugin >
47+ <groupId >org.apache.maven.plugins</groupId >
48+ <artifactId >maven-install-plugin</artifactId >
49+ <version >2.5.2</version >
50+ <configuration >
51+ <skip >true</skip >
52+ </configuration >
53+ </plugin >
5354
54- <plugin >
55- <groupId >org.apache.maven.plugins</groupId >
56- <artifactId >maven-deploy-plugin</artifactId >
57- <version >2.8.2</version >
58- <configuration >
59- <skip >true</skip >
60- </configuration >
61- </plugin >
62- <plugin >
63- <groupId >org.apache.maven.plugins</groupId >
64- <artifactId >maven-compiler-plugin</artifactId >
65- <version >3.7.0</version >
66- <configuration >
67- <source >${java.version} </source >
68- <target >${java.version} </target >
69- <encoding >${project.build.sourceEncoding} </encoding >
70- </configuration >
71- </plugin >
72- <plugin >
73- <groupId >org.codehaus.mojo</groupId >
74- <artifactId >build-helper-maven-plugin</artifactId >
75- <version >3.0.0</version >
76- <executions >
77- <execution >
78- <id >add-it-resource</id >
79- <phase >process-resources</phase >
80- <goals >
81- <goal >add-test-resource</goal >
82- </goals >
83- <configuration >
84- <resources >
85- <resource >
86- <directory >src/it/resources</directory >
87- </resource >
88- </resources >
89- </configuration >
90- </execution >
91- </executions >
92- </plugin >
93- <plugin >
94- <groupId >org.codehaus.mojo</groupId >
95- <artifactId >build-helper-maven-plugin</artifactId >
96- <version >3.0.0</version >
97- <executions >
98- <execution >
99- <id >add-it-source</id >
100- <phase >process-resources</phase >
101- <goals >
102- <goal >add-test-source</goal >
103- </goals >
104- <configuration >
105- <sources >
106- <source >src/it/java</source >
107- </sources >
108- </configuration >
109- </execution >
110- </executions >
111- </plugin >
112- <plugin >
113- <groupId >org.apache.maven.plugins</groupId >
114- <artifactId >maven-failsafe-plugin</artifactId >
115- <version >2.22.0</version >
116- <executions >
117- <execution >
118- <id >integration-test</id >
119- <goals >
120- <goal >integration-test</goal >
121- </goals >
122- </execution >
123- <execution >
124- <id >verify</id >
125- <goals >
126- <goal >verify</goal >
127- </goals >
128- </execution >
129- </executions >
130- </plugin >
55+ <plugin >
56+ <groupId >org.apache.maven.plugins</groupId >
57+ <artifactId >maven-deploy-plugin</artifactId >
58+ <version >2.8.2</version >
59+ <configuration >
60+ <skip >true</skip >
61+ </configuration >
62+ </plugin >
63+ <plugin >
64+ <groupId >org.apache.maven.plugins</groupId >
65+ <artifactId >maven-compiler-plugin</artifactId >
66+ <version >3.7.0</version >
67+ <configuration >
68+ <source >${java.version} </source >
69+ <target >${java.version} </target >
70+ <encoding >${project.build.sourceEncoding} </encoding >
71+ </configuration >
72+ </plugin >
73+ <plugin >
74+ <groupId >org.codehaus.mojo</groupId >
75+ <artifactId >build-helper-maven-plugin</artifactId >
76+ <version >3.0.0</version >
77+ <executions >
78+ <execution >
79+ <id >add-it-resource</id >
80+ <phase >process-resources</phase >
81+ <goals >
82+ <goal >add-test-resource</goal >
83+ </goals >
84+ <configuration >
85+ <resources >
86+ <resource >
87+ <directory >src/it/resources</directory >
88+ </resource >
89+ </resources >
90+ </configuration >
91+ </execution >
92+ </executions >
93+ </plugin >
94+ <plugin >
95+ <groupId >org.codehaus.mojo</groupId >
96+ <artifactId >build-helper-maven-plugin</artifactId >
97+ <version >3.0.0</version >
98+ <executions >
99+ <execution >
100+ <id >add-it-source</id >
101+ <phase >process-resources</phase >
102+ <goals >
103+ <goal >add-test-source</goal >
104+ </goals >
105+ <configuration >
106+ <sources >
107+ <source >src/it/java</source >
108+ </sources >
109+ </configuration >
110+ </execution >
111+ </executions >
112+ </plugin >
113+ <plugin >
114+ <groupId >org.apache.maven.plugins</groupId >
115+ <artifactId >maven-failsafe-plugin</artifactId >
116+ <version >2.22.0</version >
117+ <executions >
118+ <execution >
119+ <id >integration-test</id >
120+ <goals >
121+ <goal >integration-test</goal >
122+ </goals >
123+ </execution >
124+ <execution >
125+ <id >verify</id >
126+ <goals >
127+ <goal >verify</goal >
128+ </goals >
129+ </execution >
130+ </executions >
131+ </plugin >
131132
132- </plugins >
133- </build >
133+ </plugins >
134+ </build >
134135</project >
0 commit comments