Skip to content

Commit 7f75169

Browse files
committed
Add POM
1 parent a54e798 commit 7f75169

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Examples/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.aspose</groupId>
5+
<artifactId>cells-java-examples</artifactId>
6+
<version>1.0-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<maven.compiler.source>1.7</maven.compiler.source>
11+
<maven.compiler.target>1.7</maven.compiler.target>
12+
</properties>
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.aspose</groupId>
16+
<artifactId>aspose-cells</artifactId>
17+
<version>8.4.2</version>
18+
</dependency>
19+
</dependencies>
20+
<repositories>
21+
<repository>
22+
<id>aspose-maven-repository</id>
23+
<url>http://maven.aspose.com/repository/repo/</url>
24+
</repository>
25+
</repositories>
26+
</project>

0 commit comments

Comments
 (0)