forked from psiegman/epublib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
99 lines (88 loc) · 2.59 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?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>nl.siegmann.epublib</groupId>
<artifactId>epublib-parent</artifactId>
<name>epublib-parent</name>
<packaging>pom</packaging>
<version>3.0-SNAPSHOT</version>
<description>A java library for reading/writing/manipulating epub files</description>
<url>http://www.siegmann.nl/epublib</url>
<inceptionYear>2009</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.6.1</slf4j.version>
</properties>
<modules>
<module>epublib-core</module>
<module>epublib-tools</module>
</modules>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>paul</id>
<name>Paul Siegmann</name>
<email>[email protected]</email>
<url>http://www.siegmann.nl/</url>
<timezone>+1</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>http://github.com/psiegman/epublib/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>repo</id>
<url>https://github.com/psiegman/mvn-repo/raw/master/releases</url>
</repository>
<snapshotRepository>
<id>snapshot-repo</id>
<url>https://github.com/psiegman/mvn-repo/raw/master/snapshots</url>
</snapshotRepository>
</distributionManagement>
<scm>
<url>http://github.com/psiegman/epublib</url>
<connection>scm:git:https://[email protected]/psiegman/epublib.git</connection>
<developerConnection>scm:git:https://[email protected]/psiegman/epublib.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0-beta-3</version>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>maven</id>
<url>http://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>jboss</id>
<url>https://repository.jboss.org/nexus/</url>
</repository>
</repositories>
</project>