-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Harmonise builds of dev-launcher and other artefacts Related to issue #75 (POM cleanup)
- Loading branch information
Showing
13 changed files
with
560 additions
and
180 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pipeline.log=${org.daisy.pipeline.data}/log | ||
pipeline.config=${org.daisy.pipeline.home}/etc | ||
bundles.auto.deploy=../bundles/felix | ||
bundles.bootstrap=../bundles/bootstrap | ||
bundles.auto.deploy=../bundles/system/felix | ||
bundles.bootstrap=../bundles/system/bootstrap | ||
pipeline.ws.clientkey=clientid | ||
pipeline.ws.clientsecret=supersecret |
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
3 changes: 0 additions & 3 deletions
3
src/main/resources/etc/org.apache.felix.fileinstall-framework.cfg
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
src/main/resources/etc/org.apache.felix.fileinstall-frontend.cfg
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
src/main/resources/etc/org.apache.felix.fileinstall-modules.cfg
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> | ||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:pom="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:pf="http://www.daisy.org/ns/pipeline/functions" | ||
version="2.0"> | ||
<xsl:import href="uri-functions.xsl"/> | ||
<xsl:param name="id"/> | ||
<xsl:param name="base"/> | ||
<xsl:param name="dest"/> | ||
<xsl:output method="text" encoding="UTF-8" name="text"/> | ||
<xsl:variable name="doc" as="document-node()" select="/"/> | ||
<xsl:template match="/*"> | ||
<xsl:for-each select="tokenize($id,'\s*,\s*')[not(.='')]"> | ||
<xsl:variable name="id" select="."/> | ||
<xsl:for-each select="$doc//pom:execution[pom:id=$id][not(ancestor::pom:profile)][1]/pom:configuration"> | ||
<xsl:variable name="outputDirectory" as="xs:string" select="pom:outputDirectory/string()"/> | ||
<xsl:variable name="startLevel" as="xs:string" select="(pom:artifactItems/@startLevel/string(),'50')[1]"/> | ||
<xsl:result-document href="{concat($dest, '/', 'org.apache.felix.fileinstall-', $id, '.cfg')}" format="text"> | ||
<xsl:text>felix.fileinstall.start.level=</xsl:text> | ||
<xsl:value-of select="$startLevel"/> | ||
<xsl:text>
</xsl:text> | ||
<xsl:text>felix.fileinstall.dir=</xsl:text> | ||
<xsl:value-of select="pf:relativize-uri($outputDirectory,$base)"/> | ||
<xsl:text>
</xsl:text> | ||
<xsl:text>felix.fileinstall.noInitialDelay=true
</xsl:text> | ||
</xsl:result-document> | ||
</xsl:for-each> | ||
</xsl:for-each> | ||
</xsl:template> | ||
</xsl:stylesheet> |
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
Oops, something went wrong.