This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·59 lines (52 loc) · 1.77 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
┌──┐
│ │
│Eh│ony
└──┘
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.ehony</groupId>
<artifactId>awt-painter</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>AWT Painter</name>
<description>CSS-like effects brought to Java shape painting.</description>
<url>https://github.com/smikhalevski/awt-painter.git</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/smikhalevski/awt-painter.git</connection>
<developerConnection>scm:git:[email protected]:smikhalevski/awt-painter.git</developerConnection>
<url>http://github.com/smikhalevski/awt-painter</url>
</scm>
<developers>
<developer>
<id>smikhalevski</id>
<name>Savva Mikhalevski</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>