forked from sleberrigaud/database-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
116 lines (104 loc) · 3.82 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>4</version>
</parent>
<groupId>org.leberrigaud.maven.plugins</groupId>
<artifactId>database-maven-plugin</artifactId>
<version>0.10-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven Database Plugin</name>
<description>A maven plugin to create and drop databases and their associated users.</description>
<url>http://wiki.github.com/sleberrigaud/database-maven-plugin/</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:sleberrigaud/database-maven-plugin.git</connection>
<developerConnection>scm:git:[email protected]:sleberrigaud/database-maven-plugin.git</developerConnection>
<url>http://github.com/sleberrigaud/database-maven-plugin</url>
</scm>
<developers>
<developer>
<id>sleberrigaud</id>
<name>Samuel Le Berrigaud</name>
<email>sam(at)leberrigaud(dot)org</email>
<url>http://sam.leberrigaud.org</url>
<timezone>+1</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-mojo</artifactId>
<version>${gmaven.version}</version>
</dependency>
<!-- mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.13</version>
<optional>true</optional>
</dependency>
<!-- postgres -->
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.0-801.jdbc4</version>
<optional>true</optional>
</dependency>
<!-- sql server -->
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.2.4</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>${gmaven.version}</version>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>oracle</id>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.2.0</version>
<optional>true</optional>
</dependency>
</dependencies>
</profile>
</profiles>
<properties>
<gmaven.version>1.3</gmaven.version>
<gmaven.runtime>1.5</gmaven.runtime>
</properties>
</project>