Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit063082b

Browse files
committed
try maven
1 parent290af4e commit063082b

File tree

3 files changed

+65
-1
lines changed

3 files changed

+65
-1
lines changed

‎.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
bin
44
*.swp
55
*.class
6-
.settings
6+
.settings
7+
/target/

‎.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
language:java

‎pom.xml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<projectxmlns="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>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp