-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallation.html
93 lines (80 loc) · 3.65 KB
/
installation.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>P2P-Sync | Installation</title>
<meta name="description" content="Install P2P-Sync using Maven" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="resources/img/sync-logo.png">
<link rel="stylesheet" type="text/css" href="resources/css/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="resources/css/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="resources/css/github-light.css" media="screen">
<link rel="stylesheet" type="text/css" href="resources/css/main.css">
<!-- Highlight JS -->
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.2.0/styles/default.min.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.2.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<section class="page-header-orig">
<h1 class="project-name"><img src="resources/img/sync-logo.png" height="39"> P2P-Sync</h1>
<h2 class="project-tagline">A simple library for distributed file synchronisation and sharing</h2>
<a href="https://github.com/p2p-sync/sync" class="btn">View on GitHub</a>
<a href="https://github.com/p2p-sync/sync/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/p2p-sync/sync/tarball/master" class="btn">Download .tar.gz</a>
</section>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="console-client.html">Console Client</a></li>
</ul>
</nav>
<section class="main-content">
<h1>
<a id="p2p-sync-client" class="anchor" href="#p2p-sync-client" aria-hidden="true">
<span aria-hidden="true" class="octicon octicon-link"></span>
</a>
Installation
</h1>
<h2>Maven</h2>
<p>
Using maven, the library can be added as dependency of your project by
specifying the following in your pom.xml
</p>
<pre>
<code class="xml">
<repositories>
<repository>
<id>sync-mvn-repo</id>
<url>https://raw.github.com/p2p-sync/sync/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.rmatil.sync</groupId>
<artifactId>sync</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</code>
</pre>
<footer class="site-footer">
<span class="site-footer-owner">
<a href="https://github.com/p2p-sync/client">P2P-Sync Client</a>
is maintained by <a href="https://github.com/p2p-sync">p2p-sync</a>.
</span>
<span class="site-footer-credits">
This site is using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a>
by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</span>
</footer>
</section>
</body>
</html>