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 >