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/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.groupdocs</groupId >
8+ <artifactId >viewer-java-examples</artifactId >
9+ <version >1.0</version >
10+ <build >
11+ <plugins >
12+ <plugin >
13+ <groupId >org.apache.maven.plugins</groupId >
14+ <artifactId >maven-enforcer-plugin</artifactId >
15+ <version >3.0.0-M1</version >
16+ <executions >
17+ <execution >
18+ <id >enforce-maven</id >
19+ <goals >
20+ <goal >enforce</goal >
21+ </goals >
22+ <configuration >
23+ <rules >
24+ <requireMavenVersion >
25+ <version >2.2.0</version >
26+ </requireMavenVersion >
27+ </rules >
28+ </configuration >
29+ </execution >
30+ </executions >
31+ </plugin >
32+ <plugin >
33+ <groupId >org.apache.maven.plugins</groupId >
34+ <artifactId >maven-surefire-plugin</artifactId >
35+ <version >2.12</version >
36+ <configuration >
37+ <systemProperties >
38+ <property >
39+ <name >loggerPath</name >
40+ <value >conf/log4j.properties</value >
41+ </property >
42+ </systemProperties >
43+ <argLine >-Xms512m -Xmx1500m</argLine >
44+ <parallel >methods</parallel >
45+ <forkMode >pertest</forkMode >
46+ </configuration >
47+ </plugin >
48+ <plugin >
49+ <artifactId >maven-dependency-plugin</artifactId >
50+ <executions >
51+ <execution >
52+ <phase >package</phase >
53+ <goals >
54+ <goal >copy-dependencies</goal >
55+ </goals >
56+ <configuration >
57+ <outputDirectory >${project.build.directory} /lib</outputDirectory >
58+ </configuration >
59+ </execution >
60+ </executions >
61+ </plugin >
62+ <plugin >
63+ <groupId >org.apache.maven.plugins</groupId >
64+ <artifactId >maven-javadoc-plugin</artifactId >
65+ <version >2.10.4</version >
66+ <executions >
67+ <execution >
68+ <id >attach-javadocs</id >
69+ <goals >
70+ <goal >jar</goal >
71+ </goals >
72+ </execution >
73+ </executions >
74+ </plugin >
75+ <plugin >
76+ <groupId >org.apache.maven.plugins</groupId >
77+ <artifactId >maven-source-plugin</artifactId >
78+ <version >2.2.1</version >
79+ <executions >
80+ <execution >
81+ <id >attach-sources</id >
82+ <goals >
83+ <goal >jar-no-fork</goal >
84+ </goals >
85+ </execution >
86+ </executions >
87+ </plugin >
88+ </plugins >
89+ </build >
90+
91+ <repositories >
92+ <repository >
93+ <id >GroupDocsJavaCloudAPI</id >
94+ <name >GroupDocs Java Cloud API</name >
95+ <url >http://artifact.groupdocs.cloud/repo/</url >
96+ </repository >
97+ <repository >
98+ <id >maven.aspose.cloud</id >
99+ <name >maven.aspose.cloud</name >
100+ <url >http://artifact.aspose.cloud/repo/</url >
101+ </repository >
102+ </repositories >
103+
104+ <dependencies >
105+ <dependency >
106+ <groupId >com.groupdocs</groupId >
107+ <artifactId >groupdocs-viewer-cloud</artifactId >
108+ <version >18.7</version >
109+ </dependency >
110+ <dependency >
111+ <groupId >io.swagger</groupId >
112+ <artifactId >swagger-annotations</artifactId >
113+ <version >${swagger-core-version} </version >
114+ </dependency >
115+ <dependency >
116+ <groupId >com.squareup.okhttp</groupId >
117+ <artifactId >okhttp</artifactId >
118+ <version >${okhttp-version} </version >
119+ </dependency >
120+ <dependency >
121+ <groupId >com.squareup.okhttp</groupId >
122+ <artifactId >logging-interceptor</artifactId >
123+ <version >${okhttp-version} </version >
124+ </dependency >
125+ <dependency >
126+ <groupId >com.google.code.gson</groupId >
127+ <artifactId >gson</artifactId >
128+ <version >${gson-version} </version >
129+ </dependency >
130+ <dependency >
131+ <groupId >io.gsonfire</groupId >
132+ <artifactId >gson-fire</artifactId >
133+ <version >${gson-fire-version} </version >
134+ </dependency >
135+ <dependency >
136+ <groupId >org.threeten</groupId >
137+ <artifactId >threetenbp</artifactId >
138+ <version >${threetenbp-version} </version >
139+ </dependency >
140+ <!-- test dependencies -->
141+ <dependency >
142+ <groupId >junit</groupId >
143+ <artifactId >junit</artifactId >
144+ <version >${junit-version} </version >
145+ </dependency >
146+ <dependency >
147+ <groupId >com.aspose</groupId >
148+ <artifactId >aspose-cloud-storage</artifactId >
149+ <version >${aspose-cloud-storage-version} </version >
150+ </dependency >
151+ </dependencies >
152+ <properties >
153+ <java .version>1.7</java .version>
154+ <maven .compiler.source>${java.version} </maven .compiler.source>
155+ <maven .compiler.target>${java.version} </maven .compiler.target>
156+ <gson-fire-version >1.8.0</gson-fire-version >
157+ <swagger-core-version >1.5.15</swagger-core-version >
158+ <okhttp-version >2.7.5</okhttp-version >
159+ <gson-version >2.8.1</gson-version >
160+ <threetenbp-version >1.3.5</threetenbp-version >
161+ <maven-plugin-version >1.0.0</maven-plugin-version >
162+ <junit-version >4.12</junit-version >
163+ <aspose-cloud-storage-version >1.0.0</aspose-cloud-storage-version >
164+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
165+ </properties >
166+ </project >
0 commit comments