-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into ci/skip-draft
- Loading branch information
Showing
25 changed files
with
626 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>com.dbeaver.common.modules</artifactId> | ||
<version>2.2.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>com.dbeaver.jdbc.api</artifactId> | ||
<name>JDBC framework</name> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>org.jkiss.utils</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
</build> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>com.dbeaver.common.modules</artifactId> | ||
<version>2.3.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>com.dbeaver.jdbc.api</artifactId> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<name>JDBC framework</name> | ||
<description>Framework for JDBC drivers development.</description> | ||
<url>https://github.com/dbeaver/dbeaver-common</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>org.jkiss.utils</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Serge Rider</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/serge-rider</url> | ||
<organization>DBeaver Corp</organization> | ||
<organizationUrl>https://github.com/dbeaver</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:dbeaver/dbeaver-common.git</connection> | ||
<developerConnection>scm:git:[email protected]:dbeaver/dbeaver-common.git</developerConnection> | ||
<url>[email protected]:dbeaver/dbeaver-common.git</url> | ||
</scm> | ||
|
||
<build> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,59 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>com.dbeaver.common.modules</artifactId> | ||
<version>2.2.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>com.dbeaver.rpc</artifactId> | ||
<name>RPC framework</name> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>org.jkiss.utils</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
</build> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>com.dbeaver.common.modules</artifactId> | ||
<version>2.3.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>com.dbeaver.rpc</artifactId> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<name>RPC framework</name> | ||
<description>RPC over HTTP.</description> | ||
<url>https://github.com/dbeaver/dbeaver-common</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.dbeaver.common</groupId> | ||
<artifactId>org.jkiss.utils</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Serge Rider</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/serge-rider</url> | ||
<organization>DBeaver Corp</organization> | ||
<organizationUrl>https://github.com/dbeaver</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:dbeaver/dbeaver-common.git</connection> | ||
<developerConnection>scm:git:[email protected]:dbeaver/dbeaver-common.git</developerConnection> | ||
<url>[email protected]:dbeaver/dbeaver-common.git</url> | ||
</scm> | ||
|
||
<build> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.