未验证 提交 5ac05a70 编写于 作者: S Serge Rider 提交者: GitHub

Merge pull request #7580 from dbeaver/667-script-console

SQL Script Output Console - plugin module
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.jkiss.dbeaver.data.console;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Release-Date: 20200106
Bundle-Vendor: %Bundle-Vendor
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui.console,
org.jkiss.dbeaver.ui,
org.jkiss.dbeaver.core
Export-Package: org.jkiss.dbeaver.data.console
Automatic-Module-Name: org.jkiss.dbeaver.data.console
#Properties file for org.jkiss.dbeaver.debug.ui
# DBeaver - Universal Database Manager
# Copyright (C) 2010-2019 Serge Rider (serge@jkiss.org)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Bundle-Vendor = JKISS
Bundle-Name = DBeaver SQL Script Output Console
presentation.scriptconsole.label = Console
presentation.scriptconsole.description = SQL Script Output Console
source.. = src/
output.. = target/classes/
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
plugin.xml
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2019 Serge Rider (serge@jkiss.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<plugin>
<extension point="org.jkiss.dbeaver.resultset.presentation">
<presentation
id="plaintext"
label="%presentation.scriptconsole.label"
description="%presentation.scriptconsole.description"
icon="platform:/plugin/org.jkiss.dbeaver.ui/icons/sql/sql_console.png"
class="org.jkiss.dbeaver.data.console.ConsoleTextPresentation"
type="columns"
supportsRecordMode="true"
order="200">
<objectType name="org.jkiss.dbeaver.model.exec.DBCResultSet" if="context.supportsAttributes()"/>
</presentation>
</extension>
</plugin>
<?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>org.jkiss.dbeaver</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<artifactId>org.jkiss.dbeaver.data.console</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
......@@ -96,7 +96,7 @@
<module>org.jkiss.dbeaver.ext.sample.database</module>
<module>org.jkiss.dbeaver.ext.ui.locks</module>
<module>org.jkiss.dbeaver.ext.ui.svg</module>
<module>org.jkiss.dbeaver.ext.ui.colortheme</module>
<module>org.jkiss.dbeaver.ext.ui.colortheme</module>
<module>org.jkiss.dbeaver.ext.ui.tipoftheday</module>
<module>org.jkiss.dbeaver.tasks.native</module>
......@@ -112,8 +112,8 @@
<module>org.jkiss.dbeaver.net.ssh.jsch</module>
<module>org.jkiss.dbeaver.net.ssh.sshj</module>
<module>org.jkiss.dbeaver.net.ssh.ui</module>
<module>org.jkiss.dbeaver.slf4j</module>
<module>org.jkiss.dbeaver.data.console</module>
</modules>
<!-- Include Git only in modern Eclipse version -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册