Skip to content

Commit 921e874

Browse files
Add pom.xml to SendSafelyAPI
1 parent ce83d63 commit 921e874

File tree

2 files changed

+88
-0
lines changed

2 files changed

+88
-0
lines changed

SendSafelyAPI/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#Installation
2+
The sendsafely-java-api jar is available from [GitHub](https://github.com/SendSafely/Java-Client-API/releases) or a [public maven repository](https://mvnrepository.com/artifact/com.sendsafely/sendsafely-java-api).
3+
4+
Use the following dependency in your project to grab via Maven:
5+
```
6+
<dependency>
7+
<groupId>com.sendsafely</groupId>
8+
<artifactId>sendsafely-java-api</artifactId>
9+
<version>3.1.6</version>
10+
</dependency>
11+
```
12+
13+
Refer to the SendSafely [Java-Client-API/SampleApplication](https://github.com/SendSafely/Java-Client-API/tree/master/SampleApplication) for a quick start with using the Java Client API.

SendSafelyAPI/pom.xml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.sendsafely</groupId>
8+
<artifactId>sendsafely-java-api</artifactId>
9+
<version>3.1.6</version>
10+
<packaging>jar</packaging>
11+
12+
<name>SendSafely Java Client API</name>
13+
<description>The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner. </description>
14+
<url>https://developer.sendsafely.com</url>
15+
16+
<licenses>
17+
<license>
18+
<name>The Apache License, Version 2.0</name>
19+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
20+
</license>
21+
</licenses>
22+
23+
<developers>
24+
<developer>
25+
<name>SendSafely</name>
26+
<email>[email protected]</email>
27+
<organization>SendSafely</organization>
28+
<organizationUrl>https://www.sendsafely.com</organizationUrl>
29+
</developer>
30+
</developers>
31+
32+
<issueManagement>
33+
<url>https://sendsafely.zendesk.com/hc/requests/new</url>
34+
</issueManagement>
35+
36+
<scm>
37+
<connection>scm:git:git://github.com/SendSafely/Java-Client-API.git</connection>
38+
<developerConnection>scm:git:ssh://github.com/SendSafely/Java-Client-API.git</developerConnection>
39+
<url>https://github.com/SendSafely/Java-Client-API</url>
40+
</scm>
41+
42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>ossrh</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
<repository>
48+
<id>ossrh</id>
49+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
50+
</repository>
51+
</distributionManagement>
52+
53+
<dependencies>
54+
<dependency>
55+
<groupId>com.google.code.gson</groupId>
56+
<artifactId>gson</artifactId>
57+
<version>2.8.6</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>commons-io</groupId>
61+
<artifactId>commons-io</artifactId>
62+
<version>2.5</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.bouncycastle</groupId>
66+
<artifactId>bcprov-jdk15on</artifactId>
67+
<version>1.65</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.bouncycastle</groupId>
71+
<artifactId>bcpg-jdk15on</artifactId>
72+
<version>1.65</version>
73+
</dependency>
74+
</dependencies>
75+
</project>

0 commit comments

Comments
 (0)