-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dbeaver/pro#3538 maven publisher (#51)
* dbeaver/pro#3538 Maven deploy config + javadoc * dbeaver/pro#3538 Maven deploy config + javadoc * dbeaver/pro#3538 Modules descriptions * dbeaver/pro#3538 Deploy config * dbeaver/pro#3538 Deploy config * dbeaver/pro#3538 Deploy config * dbeaver/pro#3538 Deploy config
- Loading branch information
1 parent
7b103fc
commit 13255a4
Showing
13 changed files
with
363 additions
and
142 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
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.2.0-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
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.2.0-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,54 @@ | ||
<?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>org.jkiss.utils</artifactId> | ||
<name>Common utils</name> | ||
<packaging>eclipse-plugin</packaging> | ||
<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>org.jkiss.utils</artifactId> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<name>DBeaver Common Utils</name> | ||
<description>Various utilities for DBeaver projects. Similar to commons-utils or guava.</description> | ||
<url>https://github.com/dbeaver/dbeaver-common</url> | ||
|
||
<build> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</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
Oops, something went wrong.