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 >
4
- <groupId >lintcode</groupId >
5
- <artifactId >lintcode</artifactId >
6
- <version >0.0.1-SNAPSHOT</version >
7
- <dependencies >
8
- <dependency >
9
- <groupId >org.apache.maven.plugins</groupId >
10
- <artifactId >maven-compiler-plugin</artifactId >
11
- <version >2.1</version >
12
- <type >maven-plugin</type >
13
- </dependency >
14
- <dependency >
15
- <groupId >junit</groupId >
16
- <artifactId >junit</artifactId >
17
- <version >4.11</version >
18
- </dependency >
19
- </dependencies >
20
- <repositories >
21
- <repository >
22
- <snapshots >
23
- <enabled >false</enabled >
24
- </snapshots >
25
- <id >central</id >
26
- <name >Central Repository</name >
27
- <url >http://repo.maven.apache.org/maven2</url >
28
- </repository >
29
- </repositories >
30
- <build >
31
- <sourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</sourceDirectory >
32
- <scriptSourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/scripts</scriptSourceDirectory >
33
- <testSourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</testSourceDirectory >
34
- <outputDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/bin</outputDirectory >
35
- <testOutputDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/bin</testOutputDirectory >
36
- <resources >
37
- <resource >
38
- <directory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</directory >
39
- </resource >
40
- </resources >
41
- <testResources >
42
- <testResource >
43
- <directory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</directory >
44
- </testResource >
45
- </testResources >
46
- <directory >/Users/Steven/Documents/Github/interview_coder/lintcode/target</directory >
47
- <plugins >
48
- <plugin >
49
- <groupId >org.apache.maven.plugins</groupId >
50
- <artifactId >maven-compiler-plugin</artifactId >
51
- <version >2.1</version >
52
- <configuration >
53
- <source >1.7</source >
54
- <target >1.7</target >
55
- <includes >
56
- <include >**/*.java</include >
57
- </includes >
58
- </configuration >
59
- </plugin >
60
- </plugins >
61
- </build >
62
- </project >
1
+ <?xml version =" 1.0" ?>
2
+ <project xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+ <groupId >lintcode</groupId >
6
+ <artifactId >lintcode</artifactId >
7
+ <version >0.0.1-SNAPSHOT</version >
8
+ <dependencies >
9
+ <dependency >
10
+ <groupId >org.apache.maven.plugins</groupId >
11
+ <artifactId >maven-compiler-plugin</artifactId >
12
+ <version >2.1</version >
13
+ <type >maven-plugin</type >
14
+ <scope >compile</scope >
15
+ </dependency >
16
+ <dependency >
17
+ <groupId >junit</groupId >
18
+ <artifactId >junit</artifactId >
19
+ <version >4.11</version >
20
+ <scope >compile</scope >
21
+ </dependency >
22
+ </dependencies >
23
+ <repositories >
24
+ <repository >
25
+ <snapshots >
26
+ <enabled >false</enabled >
27
+ </snapshots >
28
+ <id >central</id >
29
+ <name >Central Repository</name >
30
+ <url >http://repo.maven.apache.org/maven2</url >
31
+ </repository >
32
+ </repositories >
33
+ <pluginRepositories >
34
+ <pluginRepository >
35
+ <releases >
36
+ <updatePolicy >never</updatePolicy >
37
+ </releases >
38
+ <snapshots >
39
+ <enabled >false</enabled >
40
+ </snapshots >
41
+ <id >central</id >
42
+ <name >Central Repository</name >
43
+ <url >http://repo.maven.apache.org/maven2</url >
44
+ </pluginRepository >
45
+ </pluginRepositories >
46
+ <build >
47
+ <sourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</sourceDirectory >
48
+ <scriptSourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/scripts</scriptSourceDirectory >
49
+ <testSourceDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</testSourceDirectory >
50
+ <outputDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/bin</outputDirectory >
51
+ <testOutputDirectory >/Users/Steven/Documents/Github/interview_coder/lintcode/bin</testOutputDirectory >
52
+ <resources >
53
+ <resource >
54
+ <directory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</directory >
55
+ </resource >
56
+ </resources >
57
+ <testResources >
58
+ <testResource >
59
+ <directory >/Users/Steven/Documents/Github/interview_coder/lintcode/binarysearch</directory >
60
+ </testResource >
61
+ </testResources >
62
+ <directory >target</directory >
63
+ <finalName >lintcode-0.0.1-SNAPSHOT</finalName >
64
+ <pluginManagement >
65
+ <plugins >
66
+ <plugin >
67
+ <artifactId >maven-antrun-plugin</artifactId >
68
+ <version >1.3</version >
69
+ </plugin >
70
+ <plugin >
71
+ <artifactId >maven-assembly-plugin</artifactId >
72
+ <version >2.2-beta-5</version >
73
+ </plugin >
74
+ <plugin >
75
+ <artifactId >maven-dependency-plugin</artifactId >
76
+ <version >2.8</version >
77
+ </plugin >
78
+ <plugin >
79
+ <artifactId >maven-release-plugin</artifactId >
80
+ <version >2.3.2</version >
81
+ </plugin >
82
+ </plugins >
83
+ </pluginManagement >
84
+ <plugins >
85
+ <plugin >
86
+ <artifactId >maven-compiler-plugin</artifactId >
87
+ <version >2.1</version >
88
+ <executions >
89
+ <execution >
90
+ <id >default-compile</id >
91
+ <phase >compile</phase >
92
+ <goals >
93
+ <goal >compile</goal >
94
+ </goals >
95
+ <configuration >
96
+ <source >1.7</source >
97
+ <target >1.7</target >
98
+ <includes >
99
+ <include >*/*.java</include >
100
+ </includes >
101
+ </configuration >
102
+ </execution >
103
+ <execution >
104
+ <id >default-testCompile</id >
105
+ <phase >test-compile</phase >
106
+ <goals >
107
+ <goal >testCompile</goal >
108
+ </goals >
109
+ <configuration >
110
+ <source >1.7</source >
111
+ <target >1.7</target >
112
+ <includes >
113
+ <include >*/*.java</include >
114
+ </includes >
115
+ </configuration >
116
+ </execution >
117
+ </executions >
118
+ <configuration >
119
+ <source >1.7</source >
120
+ <target >1.7</target >
121
+ <includes >
122
+ <include >*/*.java</include >
123
+ </includes >
124
+ </configuration >
125
+ </plugin >
126
+ <plugin >
127
+ <artifactId >maven-clean-plugin</artifactId >
128
+ <version >2.5</version >
129
+ <executions >
130
+ <execution >
131
+ <id >default-clean</id >
132
+ <phase >clean</phase >
133
+ <goals >
134
+ <goal >clean</goal >
135
+ </goals >
136
+ </execution >
137
+ </executions >
138
+ </plugin >
139
+ <plugin >
140
+ <artifactId >maven-resources-plugin</artifactId >
141
+ <version >2.6</version >
142
+ <executions >
143
+ <execution >
144
+ <id >default-testResources</id >
145
+ <phase >process-test-resources</phase >
146
+ <goals >
147
+ <goal >testResources</goal >
148
+ </goals >
149
+ </execution >
150
+ <execution >
151
+ <id >default-resources</id >
152
+ <phase >process-resources</phase >
153
+ <goals >
154
+ <goal >resources</goal >
155
+ </goals >
156
+ </execution >
157
+ </executions >
158
+ </plugin >
159
+ <plugin >
160
+ <artifactId >maven-jar-plugin</artifactId >
161
+ <version >2.4</version >
162
+ <executions >
163
+ <execution >
164
+ <id >default-jar</id >
165
+ <phase >package</phase >
166
+ <goals >
167
+ <goal >jar</goal >
168
+ </goals >
169
+ </execution >
170
+ </executions >
171
+ </plugin >
172
+ <plugin >
173
+ <artifactId >maven-surefire-plugin</artifactId >
174
+ <version >2.12.4</version >
175
+ <executions >
176
+ <execution >
177
+ <id >default-test</id >
178
+ <phase >test</phase >
179
+ <goals >
180
+ <goal >test</goal >
181
+ </goals >
182
+ </execution >
183
+ </executions >
184
+ </plugin >
185
+ <plugin >
186
+ <artifactId >maven-install-plugin</artifactId >
187
+ <version >2.4</version >
188
+ <executions >
189
+ <execution >
190
+ <id >default-install</id >
191
+ <phase >install</phase >
192
+ <goals >
193
+ <goal >install</goal >
194
+ </goals >
195
+ </execution >
196
+ </executions >
197
+ </plugin >
198
+ <plugin >
199
+ <artifactId >maven-deploy-plugin</artifactId >
200
+ <version >2.7</version >
201
+ <executions >
202
+ <execution >
203
+ <id >default-deploy</id >
204
+ <phase >deploy</phase >
205
+ <goals >
206
+ <goal >deploy</goal >
207
+ </goals >
208
+ </execution >
209
+ </executions >
210
+ </plugin >
211
+ <plugin >
212
+ <artifactId >maven-site-plugin</artifactId >
213
+ <version >3.3</version >
214
+ <executions >
215
+ <execution >
216
+ <id >default-site</id >
217
+ <phase >site</phase >
218
+ <goals >
219
+ <goal >site</goal >
220
+ </goals >
221
+ <configuration >
222
+ <outputDirectory >/target/site</outputDirectory >
223
+ <reportPlugins >
224
+ <reportPlugin >
225
+ <groupId >org.apache.maven.plugins</groupId >
226
+ <artifactId >maven-project-info-reports-plugin</artifactId >
227
+ </reportPlugin >
228
+ </reportPlugins >
229
+ </configuration >
230
+ </execution >
231
+ <execution >
232
+ <id >default-deploy</id >
233
+ <phase >site-deploy</phase >
234
+ <goals >
235
+ <goal >deploy</goal >
236
+ </goals >
237
+ <configuration >
238
+ <outputDirectory >/target/site</outputDirectory >
239
+ <reportPlugins >
240
+ <reportPlugin >
241
+ <groupId >org.apache.maven.plugins</groupId >
242
+ <artifactId >maven-project-info-reports-plugin</artifactId >
243
+ </reportPlugin >
244
+ </reportPlugins >
245
+ </configuration >
246
+ </execution >
247
+ </executions >
248
+ <configuration >
249
+ <outputDirectory >/target/site</outputDirectory >
250
+ <reportPlugins >
251
+ <reportPlugin >
252
+ <groupId >org.apache.maven.plugins</groupId >
253
+ <artifactId >maven-project-info-reports-plugin</artifactId >
254
+ </reportPlugin >
255
+ </reportPlugins >
256
+ </configuration >
257
+ </plugin >
258
+ </plugins >
259
+ </build >
260
+ <reporting >
261
+ <outputDirectory >/target/site</outputDirectory >
262
+ </reporting >
263
+ </project >