-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1204 from b2ihealthcare/issue/broken-oss-win-pkg-8.x
Broken oss win package (8.x)
- Loading branch information
Showing
3 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
releng/com.b2international.snowowl.server.update/assembly/oss-win.xml
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,60 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> | ||
<id>oss</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<fileSets> | ||
<!-- Equinox server base content --> | ||
<fileSet> | ||
<directory>${win.product.path}/configuration</directory> | ||
<outputDirectory>configuration</outputDirectory> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${win.product.path}/plugins</directory> | ||
<outputDirectory>plugins</outputDirectory> | ||
<excludes> | ||
<exclude>org.eclipse.equinox.launcher.*</exclude> | ||
</excludes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${win.product.path}/plugins</directory> | ||
<outputDirectory>plugins</outputDirectory> | ||
<includes> | ||
<include>org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_*</include> | ||
<include>org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_*/**/*</include> | ||
</includes> | ||
</fileSet> | ||
<!-- Common files --> | ||
<fileSet> | ||
<directory>${project.basedir}/assembly/common</directory> | ||
<outputDirectory></outputDirectory> | ||
<excludes> | ||
<!-- Exclude all *.sh file from win package --> | ||
<exclude>**/*.sh</exclude> | ||
</excludes> | ||
</fileSet> | ||
<!-- Copy release files from the ROOT of the repository --> | ||
<fileSet> | ||
<directory>${project.basedir}/../../</directory> | ||
<outputDirectory>/</outputDirectory> | ||
<includes> | ||
<include>README*</include> | ||
<include>LICENSE*</include> | ||
<include>NOTICE*</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
<!-- Copy extra dependencies --> | ||
<dependencySets> | ||
<dependencySet> | ||
<useStrictFiltering>true</useStrictFiltering> | ||
<includes> | ||
<include>org.semanticweb.elk:elk-protege</include> | ||
</includes> | ||
<outputDirectory>plugins</outputDirectory> | ||
</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