-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate distro zip from libs export assembly
some generalization to make files reusable in other extensions
- Loading branch information
Showing
3 changed files
with
48 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> | ||
<id>devel libs dir</id> | ||
<formats> | ||
<!-- for development purposes --> | ||
<format>dir</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<!-- | ||
place runtime deps in target/libs/ to be avail for IDE development | ||
e.g. in Eclipse compile the extension and run OJ with program arguments | ||
-limit-ext-lookup false | ||
-extensions-directory "${workspace_loc:<extension_project>}/target/classes" | ||
-jars-directory "${workspace_loc:<extension_project>}/target/libs" | ||
--> | ||
<scope>runtime</scope> | ||
<useTransitiveFiltering>true</useTransitiveFiltering> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
<excludes> | ||
<exclude>org.openjump:OpenJUMP</exclude> | ||
</excludes> | ||
</dependencySet> | ||
</dependencySets> | ||
</assembly> |
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