forked from blackears/svgSalamander
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
64 lines (57 loc) · 2.21 KB
/
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
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?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>com.kitfox</groupId>
<artifactId>svgSalamander-examples</artifactId>
<version>1.1.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>com.kitfox:svgSalamander Examples</name>
<description>Examples for displaying and playing SVG content using the Java2D.</description>
<url>https://github.com/blackears/svgSalamander</url>
<licenses>
<license>
<name>BSD License</name>
<url>https://opensource.org/licenses/BSD-2-Clause</url>
</license>
</licenses>
<developers>
<developer>
<name>Mark McKay</name>
<email>[email protected]</email>
<organization>kitfox.com</organization>
<organizationUrl>http://www.kitfox.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/blackears/svgSalamander.git</connection>
<developerConnection>scm:git:ssh://github.com:blackears/svgSalamander.git</developerConnection>
<url>https://github.com/blackears/svgSalamander/tree/master/svg-examples</url>
</scm>
<properties>
<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>res</directory>
</resource>
</resources>
<testSourceDirectory>test</testSourceDirectory>
<testResources>
<testResource>
<directory>res</directory>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>svgSalamander</artifactId>
<version>1.1.4</version>
</dependency>
</dependencies>
</project>