-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
50 lines (44 loc) · 1.42 KB
/
pom.xml
File metadata and controls
50 lines (44 loc) · 1.42 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<description>Package containing examples on how to use Sejda PDF.</description>
<url>http://www.sejda.org</url>
<groupId>org.sejda</groupId>
<artifactId>sejda-example</artifactId>
<version>1.0.1</version>
<properties>
<sejda.version>3.0.3</sejda.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- Add to your ~/.m2/settings.xml -->
<!--
<server>
<id>mvn.sejda.com</id>
<username>your-sejda-pro-username</username>
<password>your-sejda-pro-password</password>
</server>
-->
<repositories>
<repository>
<id>mvn.sejda.com</id>
<url>http://mvn.sejda.com/artifactory/libs-release</url>
</repository>
<repository>
<id>sejda OSS</id>
<url>http://dl.bintray.com/sejdapdf/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sejda-core-pro</artifactId>
<version>${sejda.version}</version>
</dependency>
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sejda-sambox-pro</artifactId>
<version>${sejda.version}</version>
</dependency>
</dependencies>
</project>