forked from yugabyte/jdbc-yugabytedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
52 lines (44 loc) · 1.72 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
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<relativePath />
</parent>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb-aggregate</artifactId>
<packaging>pom</packaging>
<name>YugaByte SQL JDBC Driver aggregate</name>
<version>42.2.7-yb-4-SNAPSHOT</version>
<description>YugaByte JDBC aggregate project</description>
<url>https://github.com/YugaByte/ybjdbc</url>
<modules>
<module>jdbc-yugabytedb</module>
</modules>
<!-- If inherited from parent pom, maven tries to add artifactId to URLs -->
<scm>
<connection>scm:git:git@github.com:yugabyte/jdbc-yugabytedb.git</connection>
<developerConnection>scm:git:git@github.com:yugabyte/jdbc-yugabytedb.git</developerConnection>
<url>https://github.com/yugabyte/jdbc-yugabytedb</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>YugaByte Development Team</name>
<email>info@yugabyte.com</email>
<organization>YugaByte, Inc.</organization>
<organizationUrl>https://www.yugabyte.com</organizationUrl>
</developer>
</developers>
<distributionManagement>
<repository>
<id>${yugabyte.releases.repository.id}</id>
<url>${yugabyte.releases.repository.url}</url>
</repository>
<snapshotRepository>
<id>${yugabyte.snapshots.repository.id}</id>
<url>${yugabyte.snapshots.repository.url}</url>
</snapshotRepository>
</distributionManagement>
</project>