-
Notifications
You must be signed in to change notification settings - Fork 69
/
pom.xml
54 lines (44 loc) · 1.62 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
Maven build configuration for distribution
-->
<groupId>com.esotericsoftware</groupId>
<artifactId>tablelayout-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>tablelayout-parent</name>
<url>https://github.com/EsotericSoftware/tablelayout</url>
<description>
Table-based layout for Java UI toolkits: libgdx, Swing, Android, TWL
</description>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>BSD 3-Clause "New" or "Revised" License</name>
<url>https://api.github.com/licenses/bsd-3-clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>NathanSweet</id>
<name>Nathan Sweet</name>
<url>http://esotericsoftware.com</url>
</developer>
</developers>
<modules>
<module>tablelayout</module>
<module>tablelayout-swing</module>
<module>tablelayout-twl</module>
<module>tablelayout-android</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
</build>
</project>