Skip to content

Commit da4e302

Browse files
committed
Change version numbers to 18.1.0, add link to set up / tutorial from
main extension page, add vertical whitespace on some pages to improve readability.
1 parent bf51c58 commit da4e302

File tree

7 files changed

+20
-5
lines changed

7 files changed

+20
-5
lines changed

sqldeveloper/extension/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ Depending on requirements, this can be done in either XML or java and deployed b
66

77
### Contents
88

9+
* [Set Up / Tutorial](./setup.md) - A step by step guide to building your first extension and check for updates bundle.
10+
11+
912
* ["Simple" User Extensions (XML)](xml)
13+
14+
1015
* [Standard Extensions (java)](java)
16+
17+
1118
* [Check For Updates (cfu)](cfu)
1219

sqldeveloper/extension/cfu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SQL Developer Examples
22
## Check For Updates (cfu)
33
This is a bit of a table of contents trick to bring cfu closer to the top.
4-
Go to one of the projects and run the cfu ant task. The results will be in the built/cfu directory in the project.
4+
Go to one of the projects and run the _cfu ant task. The results will be in the built/cfu directory in the project.
55
* [Packaged XML extension](../xml/packaged)
66
* [Java extension](../java/DependencyExample)

sqldeveloper/extension/java/ContextMenuAction/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extension.id=oracle.db.example.sqldeveloper.extension.contextMenuAction
22
extension.name=Context Menu Action
33
extension.descr=Example context menu action on FUNCTION, PROCEURE code editor to insert static string
4-
extension.version=1.0.0
4+
extension.version=18.1.0
55
extension.resources=oracle.db.example.sqldeveloper.extension.contextMenuAction.ExtensionResources
66

77
extension.lib=external:$oracle.fcp.home$/sqldeveloper/extensions/${extension.id}/lib

sqldeveloper/extension/java/DependencyExample/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extension.id=oracle.db.example.sqldeveloper.extension.dependency
22
extension.name=Example Dependency Viewer
33
extension.descr=Object viewer(s) for dependency analysis
4-
extension.version=1.0.0
4+
extension.version=18.1.0
55
extension.resources=oracle.db.example.sqldeveloper.extension.dependency.DependencyExampleResources
66
# Note that there are attribution and potential license requirements if you DISTRIBUTE
77
# this example with the third party libraries included.

sqldeveloper/extension/java/DumpObjectTypesAction/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extension.id=oracle.db.example.sqldeveloper.extension.dumpObjectTypes
22
extension.name=Dump Object Types Action
33
extension.descr=Object action to dump an object type list as INFO to log window.
4-
extension.version=1.0.0
4+
extension.version=18.1.0
55
extension.resources=oracle.db.example.sqldeveloper.extension.dumpObjectTypes.DumpObjectTypesResources
66

77
extension.lib=external:$oracle.fcp.home$/sqldeveloper/extensions/${extension.id}/lib

sqldeveloper/extension/setup.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ sqldeveloper/extension is an eclipse project directory but the examples are buil
3030
## Wiring it together
3131
### build.properties
3232
* extension/build.properties - Update to point to your SQL Developer installation & optionally change the owner info.
33+
34+
3335
* extension/java/SQLDeveloper18.1.userlibraries - **IF** you are using eclipse, update the paths to point to your SQL Developer installation and import the library.
3436

3537
### Third party libraries
@@ -43,8 +45,14 @@ If you are using ant from the command line, make sure `ANT_HOME` and `JAVA_HOME`
4345
### Ant tasks
4446
The [XML Packaged](xml/packaged) example and all of the [Java](java) examples use ant to build and deploy the example. The 'heavy lifting' is all defined in buildtools so the individual build.xml files for each example are pretty simple. There only a few targets of interest:
4547
* `_rebuild` cleans and deploys the example
48+
49+
4650
* `_deploy` builds and deploys the example to the target SQL Developer installation (defined in build.properties). Please remember to exit out of SQL developer before running this so you don't confuse yourself. (Which I have great experience with :/ )
51+
52+
4753
* `_cfu` creates a check for updates bundle and associated metadata xml file in the built/cfu directory for the example.
54+
55+
4856
* `resgen` generates the ResourceBundle java files from the .properties files listed in resfiles.properties. Running this manually - and then refreshing the project - is only "needed" if you are using eclipse and want code completion and the error checker to know about new entries when editing java.
4957

5058
### _deploy Example
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
extension.id=oracle.db.examples.sqldeveloper.xml.packaged
22
extension.name=XML Extension Examples
33
extension.descr=Extension examples using XML declarations
4-
extension.version=1.0.0
4+
extension.version=18.1.0

0 commit comments

Comments
 (0)