Skip to content

Commit 832eee4

Browse files
author
Ryan King
committed
[split] add config for travis open source ci
RB_ID=74841
1 parent d8e460a commit 832eee4

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

README.mkd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,9 @@ To contribute:
5454
1. fork the project
5555
2. make a branch for each thing you want to do (don't put everything in your master branch: we don't want to cherry-pick and we may not want everything)
5656
3. send a pull request to ryanking
57+
58+
## building
59+
60+
To build and test, run `mvn test`.
61+
62+
[![Build Status](https://secure.travis-ci.org/twitter/snowflake.png)](http://travis-ci.org/twitter/snowflake).

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,29 @@
55
<artifactId>snowflake</artifactId>
66
<packaging>jar</packaging>
77
<version>1.0.1-SNAPSHOT</version>
8+
<licenses>
9+
<license>
10+
<name>Apache License</name>
11+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
12+
<distribution>repo</distribution>
13+
</license>
14+
</licenses>
15+
<repositories>
16+
<repository>
17+
<id>Twitter public Maven repo</id>
18+
<url>http://maven.twttr.com</url>
19+
</repository>
20+
</repositories>
21+
<pluginRepositories>
22+
<pluginRepository>
23+
<id>Twitter public Maven repo</id>
24+
<url>http://maven.twttr.com</url>
25+
</pluginRepository>
26+
</pluginRepositories>
827
<parent>
928
<groupId>com.twitter</groupId>
1029
<artifactId>service-292</artifactId>
1130
<version>0.0.2</version>
12-
<relativePath>../../parents/service-292/pom.xml</relativePath>
1331
</parent>
1432
<properties>
1533
<git.dir>${project.basedir}/../.git</git.dir>

0 commit comments

Comments
 (0)