Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maven project #7

Merged
merged 17 commits into from
Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .classpath

This file was deleted.

2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,20 @@ target/
#*.class
#bin/
*.DS_Store

# Eclipse
.classpath
.project
.settings/

# Maven
log/
target/
classes/
repo/

# Visual Studio Code
.vscode/
/bin/

ontouml-vp-plugin.zip
17 changes: 0 additions & 17 deletions .project

This file was deleted.

41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# OntoUML Plugin for Visual Paradigm

This project contains a [Visual Paradigm](https://www.visual-paradigm.com/) plugin that enables the development of OntoUML models.

This project is defined under the umbrella of the [OntoUML Server](https://github.com/OntoUML/ontouml-server) project and is currently a proof of concept.

If you are interested to know more, feel free to open an issue to provide feedback on the project or reach our team members for more specific cases:
* [Claudenir M. Fonseca](https://github.com/claudenirmf)
* [Tiago Prince Sales](https://github.com/tgoprince)

## Installation Instructions

To install the **OntoUML Plugin for Visual Paradigm**, please go to our [releases page](https://github.com/OntoUML/ontouml-vp-plugin/releases).

## Development Instructions

Requirements:
* [Visual Paradigm](https://www.visual-paradigm.com/)
* [Maven](https://maven.apache.org/)
* Java 8 or later

Build instructions:
* Clone this project within Visual Paradigm's `plugins` folder, typically:
* `~/.config/VisualParadigm/plugins/` in **Linux**
* `C:\Users\<YOUR_USER_NAME>\AppData\Roaming\VisualParadigm\plugins\` in **Windows**
* `~/Library/Application Support/VisualParadigm/plugins/` in **macOS**

```git clone https://github.com/OntoUML/ontouml-vp-plugin.git```

* To import necessary Visual Paradigm dependencies, run the `initialization` command passing the path to your Visual Paradigm installation `VISUAL_PARADIGM_PATH`
* `VISUAL_PARADIGM_PATH` in **macOS** is typically `/Applications/Visual\ Paradigm.app/Contents/Resources/app/`

```mvn initialize -Dvisualparadigm.app.dir=VISUAL_PARADIGM_PATH```

* To compile your source, run

```mvn compile -Dvisualparadigm.app.dir=VISUAL_PARADIGM_PATH```

* To generate an ZIP plugin installation, run

```mvn package -Dvisualparadigm.app.dir=VISUAL_PARADIGM_PATH```
26 changes: 26 additions & 0 deletions assembly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/classes</directory>
<outputDirectory>./</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/icons</directory>
<outputDirectory>./icons/</outputDirectory>
</fileSet>
</fileSets>
<files>
<file>
<source>${project.basedir}/plugin.xml</source>
<outputDirectory>./</outputDirectory>
</file>
</files>
</assembly>
35 changes: 0 additions & 35 deletions build.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build/icons/experiment.png
Binary file not shown.
Binary file removed build/icons/menu.png
Binary file not shown.
Binary file removed build/icons/ontuml-logo-horizontal.png
Binary file not shown.
Binary file removed build/icons/play-triangle.png
Binary file not shown.
Binary file removed build/icons/refresh4.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed build/lib/gson-2.8.6.jar
Binary file not shown.
48 changes: 0 additions & 48 deletions build/plugin.xml

This file was deleted.

Binary file removed classes/it/unibz/inf/ontouml/vp/OntoUMLPlugin.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed classes/it/unibz/inf/ontouml/vp/model/Class.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed classes/it/unibz/inf/ontouml/vp/model/Model.class
Binary file not shown.
Binary file not shown.
Binary file removed classes/it/unibz/inf/ontouml/vp/model/Package.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed lib/gson-2.8.6.jar
Binary file not shown.
Loading