Skip to content

Commit 7ca360d

Browse files
committed
Add pom file
1 parent 7342426 commit 7ca360d

File tree

1 file changed

+245
-0
lines changed

1 file changed

+245
-0
lines changed

pom.xml

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.aspose</groupId>
6+
<artifactId>aspose-cloud-pdf</artifactId>
7+
<packaging>jar</packaging>
8+
<name>aspose-cloud-pdf</name>
9+
<version>19.8.0</version>
10+
<url>https://www.aspose.cloud/</url>
11+
<description>Java library for communicating with the Aspose.Pdf for Cloud API</description>
12+
13+
<distributionManagement>
14+
<repository>
15+
<id>aspose</id>
16+
<url>https://artifact.aspose.cloud/repo/</url>
17+
</repository>
18+
</distributionManagement>
19+
20+
<licenses>
21+
<license>
22+
<name>MIT</name>
23+
<url>https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-java/blob/master/LICENSE</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
27+
28+
<developers>
29+
<developer>
30+
<name>Aspose PDF Cloud</name>
31+
<email></email>
32+
<organization>Aspose Pty Ltd</organization>
33+
<organizationUrl>https://products.aspose.cloud/pdf</organizationUrl>
34+
</developer>
35+
</developers>
36+
37+
<build>
38+
<plugins>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-enforcer-plugin</artifactId>
42+
<version>3.0.0-M1</version>
43+
<executions>
44+
<execution>
45+
<id>enforce-maven</id>
46+
<goals>
47+
<goal>enforce</goal>
48+
</goals>
49+
<configuration>
50+
<rules>
51+
<requireMavenVersion>
52+
<version>2.2.0</version>
53+
</requireMavenVersion>
54+
</rules>
55+
</configuration>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-surefire-plugin</artifactId>
62+
<version>2.12</version>
63+
<configuration>
64+
<systemProperties>
65+
<property>
66+
<name>loggerPath</name>
67+
<value>conf/log4j.properties</value>
68+
</property>
69+
</systemProperties>
70+
<argLine>-Xms512m -Xmx1500m</argLine>
71+
<parallel>methods</parallel>
72+
<forkMode>pertest</forkMode>
73+
</configuration>
74+
</plugin>
75+
<plugin>
76+
<artifactId>maven-dependency-plugin</artifactId>
77+
<executions>
78+
<execution>
79+
<phase>package</phase>
80+
<goals>
81+
<goal>copy-dependencies</goal>
82+
</goals>
83+
<configuration>
84+
<outputDirectory>${project.build.directory}/lib</outputDirectory>
85+
</configuration>
86+
</execution>
87+
</executions>
88+
</plugin>
89+
90+
<!-- attach test jar -->
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-jar-plugin</artifactId>
94+
<version>2.2</version>
95+
<executions>
96+
<execution>
97+
<goals>
98+
<goal>jar</goal>
99+
<goal>test-jar</goal>
100+
</goals>
101+
</execution>
102+
</executions>
103+
<configuration>
104+
</configuration>
105+
</plugin>
106+
107+
<plugin>
108+
<groupId>org.codehaus.mojo</groupId>
109+
<artifactId>build-helper-maven-plugin</artifactId>
110+
<version>1.10</version>
111+
<executions>
112+
<execution>
113+
<id>add_sources</id>
114+
<phase>generate-sources</phase>
115+
<goals>
116+
<goal>add-source</goal>
117+
</goals>
118+
<configuration>
119+
<sources>
120+
<source>
121+
src/main/java</source>
122+
</sources>
123+
</configuration>
124+
</execution>
125+
<execution>
126+
<id>add_test_sources</id>
127+
<phase>generate-test-sources</phase>
128+
<goals>
129+
<goal>add-test-source</goal>
130+
</goals>
131+
<configuration>
132+
<sources>
133+
<source>
134+
src/test/java</source>
135+
</sources>
136+
</configuration>
137+
</execution>
138+
</executions>
139+
</plugin>
140+
<plugin>
141+
<groupId>org.apache.maven.plugins</groupId>
142+
<artifactId>maven-javadoc-plugin</artifactId>
143+
<version>2.10.4</version>
144+
<executions>
145+
<execution>
146+
<id>attach-javadocs</id>
147+
<goals>
148+
<goal>jar</goal>
149+
</goals>
150+
</execution>
151+
</executions>
152+
</plugin>
153+
<plugin>
154+
<groupId>org.apache.maven.plugins</groupId>
155+
<artifactId>maven-source-plugin</artifactId>
156+
<version>2.2.1</version>
157+
<executions>
158+
<execution>
159+
<id>attach-sources</id>
160+
<goals>
161+
<goal>jar-no-fork</goal>
162+
</goals>
163+
</execution>
164+
</executions>
165+
</plugin>
166+
</plugins>
167+
</build>
168+
169+
<profiles>
170+
<profile>
171+
<id>sign-artifacts</id>
172+
<build>
173+
<plugins>
174+
<plugin>
175+
<groupId>org.apache.maven.plugins</groupId>
176+
<artifactId>maven-gpg-plugin</artifactId>
177+
<version>1.5</version>
178+
<executions>
179+
<execution>
180+
<id>sign-artifacts</id>
181+
<phase>verify</phase>
182+
<goals>
183+
<goal>sign</goal>
184+
</goals>
185+
</execution>
186+
</executions>
187+
</plugin>
188+
</plugins>
189+
</build>
190+
</profile>
191+
</profiles>
192+
193+
<dependencies>
194+
<dependency>
195+
<groupId>io.swagger</groupId>
196+
<artifactId>swagger-annotations</artifactId>
197+
<version>${swagger-core-version}</version>
198+
</dependency>
199+
<dependency>
200+
<groupId>com.squareup.okhttp</groupId>
201+
<artifactId>okhttp</artifactId>
202+
<version>${okhttp-version}</version>
203+
</dependency>
204+
<dependency>
205+
<groupId>com.squareup.okhttp</groupId>
206+
<artifactId>logging-interceptor</artifactId>
207+
<version>${okhttp-version}</version>
208+
</dependency>
209+
<dependency>
210+
<groupId>com.google.code.gson</groupId>
211+
<artifactId>gson</artifactId>
212+
<version>${gson-version}</version>
213+
</dependency>
214+
<dependency>
215+
<groupId>io.gsonfire</groupId>
216+
<artifactId>gson-fire</artifactId>
217+
<version>${gson-fire-version}</version>
218+
</dependency>
219+
<dependency>
220+
<groupId>org.threeten</groupId>
221+
<artifactId>threetenbp</artifactId>
222+
<version>${threetenbp-version}</version>
223+
</dependency>
224+
<!-- test dependencies -->
225+
<dependency>
226+
<groupId>junit</groupId>
227+
<artifactId>junit</artifactId>
228+
<version>${junit-version}</version>
229+
<scope>test</scope>
230+
</dependency>
231+
</dependencies>
232+
<properties>
233+
<java.version>1.7</java.version>
234+
<maven.compiler.source>${java.version}</maven.compiler.source>
235+
<maven.compiler.target>${java.version}</maven.compiler.target>
236+
<gson-fire-version>1.8.0</gson-fire-version>
237+
<swagger-core-version>1.5.15</swagger-core-version>
238+
<okhttp-version>2.7.5</okhttp-version>
239+
<gson-version>2.8.1</gson-version>
240+
<threetenbp-version>1.3.5</threetenbp-version>
241+
<maven-plugin-version>1.0.0</maven-plugin-version>
242+
<junit-version>4.12</junit-version>
243+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
244+
</properties>
245+
</project>

0 commit comments

Comments
 (0)