-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom-template.xml
56 lines (54 loc) · 1.84 KB
/
pom-template.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
<?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">
<!-- this is a pom.xml template file for ivy usage SKIP_LINE -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>${ivy.pom.groupId}</groupId>
<artifactId>${ivy.pom.artifactId}</artifactId>
<version>${ivy.pom.version}</version>
<packaging>${ivy.pom.packaging}</packaging>
<name>sqldump</name>
<description>Utility to dump schema and data from a RDBMS</description>
<url>https://github.com/tbrugz/sqldump</url>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/tbrugz/sqldump</connection>
<developerConnection>scm:git:https://github.com/tbrugz/sqldump</developerConnection>
<url>https://github.com/tbrugz/sqldump</url>
</scm>
<developers>
<developer>
<id>tbrugz</id>
<name>Telmo Brugnara</name>
<email>tbrugz@gmail.com</email>
</developer>
</developers>
<!-- dependencies: see ivy.xml SKIP_LINE -->
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<!--
<repository>
<id>pentaho</id>
<url>https://nexus.pentaho.org/content/groups/omni/</url>
</repository>
-->
<repository>
<id>eclipselink</id>
<url>http://download.eclipse.org/rt/eclipselink/maven.repo/</url>
</repository>
</repositories>
</project>