-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpom.xml
25 lines (18 loc) · 827 Bytes
/
pom.xml
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
<?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>
<groupId>net.sf.image4j</groupId>
<artifactId>image4j</artifactId>
<version>0.7.2</version>
<packaging>jar</packaging>
<name>image4J</name>
<description>The image4j library allows you to read and write certain image formats in 100% pure Java.</description>
<inceptionYear>2006</inceptionYear>
<properties>
<maven.compiler.source>6</maven.compiler.source>
<maven.compiler.target>6</maven.compiler.target>
</properties>
<build>
<sourceDirectory>${basedir}/src</sourceDirectory>
</build>
</project>