Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2016-03-04 17:29:30 +0000
committerMarkus Knauer2016-03-23 08:30:11 +0000
commit71d3d5687211c8c9da60b36c596c401343bb99d3 (patch)
tree8325819433abf5cc54b4b9ed9f930b17605f10e8 /releng/org.eclipse.epp.config
parentca43dbf17f707e2e64da6604e313a649aeb59b77 (diff)
downloadorg.eclipse.epp.packages-71d3d5687211c8c9da60b36c596c401343bb99d3.tar.gz
org.eclipse.epp.packages-71d3d5687211c8c9da60b36c596c401343bb99d3.tar.xz
org.eclipse.epp.packages-71d3d5687211c8c9da60b36c596c401343bb99d3.zip
Bug 488781: Add new JavaScript/Web package
The initial commit is based on the old EPP package feature layout and uses a single root feature for defining its content. Change-Id: I835be41c128df78e7ad16f7d0ea10d748c979205 Signed-off-by: Mickael Istria <mistria@redhat.com>
Diffstat (limited to 'releng/org.eclipse.epp.config')
-rw-r--r--releng/org.eclipse.epp.config/packages_map.txt3
-rw-r--r--releng/org.eclipse.epp.config/tools/addDownloadStats.xsl8
2 files changed, 11 insertions, 0 deletions
diff --git a/releng/org.eclipse.epp.config/packages_map.txt b/releng/org.eclipse.epp.config/packages_map.txt
index 5cc76f42..a4cc9209 100644
--- a/releng/org.eclipse.epp.config/packages_map.txt
+++ b/releng/org.eclipse.epp.config/packages_map.txt
@@ -20,6 +20,9 @@ dsl,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.packa
java,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.java.feature/epp.website.xml,HEAD,java.xml
java,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.java.feature/feature.xml,HEAD,java.feature.xml
+javascript,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.javascript.feature/epp.website.xml,HEAD,javascript.xml
+javascript,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.javascript.feature/feature.xml,HEAD,java.featurescript.xml
+
jee,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.jee.feature/epp.website.xml,HEAD,jee.xml
jee,GIT,/gitroot/epp/org.eclipse.epp.packages.git,packages/org.eclipse.epp.package.jee.feature/feature.xml,HEAD,jee.feature.xml
diff --git a/releng/org.eclipse.epp.config/tools/addDownloadStats.xsl b/releng/org.eclipse.epp.config/tools/addDownloadStats.xsl
index 1568d2e0..6f4529a4 100644
--- a/releng/org.eclipse.epp.config/tools/addDownloadStats.xsl
+++ b/releng/org.eclipse.epp.config/tools/addDownloadStats.xsl
@@ -42,6 +42,10 @@ Contributors:
<xsl:call-template name="artifact_properties" />
</xsl:template>
+ <xsl:template match="artifact[@classifier='osgi.bundle' and @id='org.eclipse.epp.package.javascript']/properties">
+ <xsl:call-template name="artifact_properties" />
+ </xsl:template>
+
<xsl:template match="artifact[@classifier='osgi.bundle' and @id='org.eclipse.epp.package.jee']/properties">
<xsl:call-template name="artifact_properties" />
</xsl:template>
@@ -102,6 +106,10 @@ Contributors:
<xsl:call-template name="artifact_properties_feature" />
</xsl:template>
+ <xsl:template match="artifact[@classifier='org.eclipse.update.feature' and @id='org.eclipse.epp.package.javascript.feature']/properties">
+ <xsl:call-template name="artifact_properties_feature" />
+ </xsl:template>
+
<xsl:template match="artifact[@classifier='org.eclipse.update.feature' and @id='org.eclipse.epp.package.jee.feature']/properties">
<xsl:call-template name="artifact_properties_feature" />
</xsl:template>

Back to the top