-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.txt
43 lines (33 loc) · 1.26 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
### My micro maven repo
## A Java readability clone (extracts important text and image) at https://github.com/karussell/snacktory
<dependency>
<groupId>de.jetwick</groupId>
<artifactId>snacktory</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
## An example war at https://github.com/karussell/ElasticSearchExample
## The plotter at https://github.com/karussell/plotter
<dependency>
<groupId>de.genvlin</groupId>
<artifactId>plotter</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
## A twitter utility
<dependency>
<groupId>de.jetsli</groupId>
<artifactId>twittertool</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
## USAGE
<repository>
<id>karussell_snapshots</id>
<url>https://github.com/karussell/mvnrepo/raw/master/snapshots/</url>
</repository>
<repository>
<id>karussell_releases</id>
<url>https://github.com/karussell/mvnrepo/raw/master/releases/</url>
</repository>
## If you want to do the same read:
http://cemerick.com/2010/08/24/hosting-maven-repos-on-github/
Hint add a distributionManagement tag in the pom.xml and do
mvn -DaltDeploymentRepository=snapshot-repo::default::file:/path/to/mvnrepo/snapshots/ clean deploy -Dmaven.test.skip=true