Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNitin Dahyabhai2021-01-04 17:09:30 +0000
committerNitin Dahyabhai2021-01-04 17:09:30 +0000
commit0ed49b8687c81f864919baa33aad858135ded842 (patch)
tree1e0fa89f35f6820367958ab5018187320668a51c
parentd794650016a414aca9002f747e1f1a727e64007a (diff)
downloadwebtools.sourceediting-0ed49b8687c81f864919baa33aad858135ded842.tar.gz
webtools.sourceediting-0ed49b8687c81f864919baa33aad858135ded842.tar.xz
webtools.sourceediting-0ed49b8687c81f864919baa33aad858135ded842.zip
[417874] Add IProductConstants.STATIC_WEB_CONTENT_FOLDER
-rw-r--r--web/bundles/org.eclipse.wst.web/META-INF/MANIFEST.MF2
-rw-r--r--web/bundles/org.eclipse.wst.web/pom.xml2
-rw-r--r--web/bundles/org.eclipse.wst.web/static_web_project/org/eclipse/wst/project/facet/IProductConstants.java10
3 files changed, 10 insertions, 4 deletions
diff --git a/web/bundles/org.eclipse.wst.web/META-INF/MANIFEST.MF b/web/bundles/org.eclipse.wst.web/META-INF/MANIFEST.MF
index e43305b7c0..b307ac8e13 100644
--- a/web/bundles/org.eclipse.wst.web/META-INF/MANIFEST.MF
+++ b/web/bundles/org.eclipse.wst.web/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.eclipse.wst.web; singleton:=true
-Bundle-Version: 1.2.100.qualifier
+Bundle-Version: 1.3.0.qualifier
Bundle-Activator: org.eclipse.wst.web.internal.WSTWebPlugin
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
diff --git a/web/bundles/org.eclipse.wst.web/pom.xml b/web/bundles/org.eclipse.wst.web/pom.xml
index 0948247fd1..36db6d491d 100644
--- a/web/bundles/org.eclipse.wst.web/pom.xml
+++ b/web/bundles/org.eclipse.wst.web/pom.xml
@@ -21,6 +21,6 @@
<groupId>org.eclipse.webtools.javaee</groupId>
<artifactId>org.eclipse.wst.web</artifactId>
- <version>1.2.100-SNAPSHOT</version>
+ <version>1.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/web/bundles/org.eclipse.wst.web/static_web_project/org/eclipse/wst/project/facet/IProductConstants.java b/web/bundles/org.eclipse.wst.web/static_web_project/org/eclipse/wst/project/facet/IProductConstants.java
index 5b754920b8..ac847acca0 100644
--- a/web/bundles/org.eclipse.wst.web/static_web_project/org/eclipse/wst/project/facet/IProductConstants.java
+++ b/web/bundles/org.eclipse.wst.web/static_web_project/org/eclipse/wst/project/facet/IProductConstants.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2013 IBM Corporation and others.
+ * Copyright (c) 2005, 2021 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
@@ -13,7 +13,7 @@
package org.eclipse.wst.project.facet;
/**
- * These constants define the set of properties that this pluging expects to
+ * These constants define the set of properties that this plug-in expects to
* be available via <code>IProduct.getProperty(String)</code>. The status of
* this interface and the facilities offered is highly provisional.
* Productization support will be reviewed and possibly modified in future
@@ -29,6 +29,12 @@ public interface IProductConstants {
public static final String APPLICATION_CONTENT_FOLDER = "earContent"; //$NON-NLS-1$
public static final String WEB_CONTENT_FOLDER = "webContent"; //$NON-NLS-1$
+
+ /**
+ * @since 1.3.0
+ */
+ public static final String STATIC_WEB_CONTENT_FOLDER = "staticWebContent"; //$NON-NLS-1$
+
public static final String EJB_CONTENT_FOLDER = "ejbContent"; //$NON-NLS-1$
public static final String APP_CLIENT_CONTENT_FOLDER = "appClientContent"; //$NON-NLS-1$
public static final String JCA_CONTENT_FOLDER = "jcaContent"; //$NON-NLS-1$

Back to the top