JBoss Tools SVN: r30012 - trunk/build/util.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:34:26 -0400 (Thu, 24 Mar 2011)
New Revision: 30012
Modified:
trunk/build/util/checkPOMvsManifest.sh
Log:
add -q flag to suppress warnings
Modified: trunk/build/util/checkPOMvsManifest.sh
===================================================================
--- trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:34:14 UTC (rev 30011)
+++ trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:34:26 UTC (rev 30012)
@@ -2,6 +2,7 @@
verbose=false
debug=false
+quiet=false
if [[ $1 ]] && [[ -d $1 ]]; then
basedir=$1
@@ -11,6 +12,7 @@
if [[ $2 == "-v" ]]; then verbose=true; fi
if [[ $2 == "-d" ]]; then debug=true; fi
+if [[ $2 == "-q" ]]; then quiet=true; fi
files=$(find . -maxdepth 5 -type f -name MANIFEST.MF | egrep -v "target|sdk")" "$(find . -maxdepth 4 -type f -name "feature.xml" | egrep -v "target|sdk")
for f in $files; do
@@ -24,7 +26,7 @@
true
else
av=${artVersion%%\"*}
- echo "[WARNING] No .qualifer in [$av] ${d}feature.xml"
+ if [[ $quiet != "true" ]]; then echo "[WARNING] No .qualifer in [$av] ${d}feature.xml"; fi
av=""
#echo "artVersion[2] = $artVersion"
fi
@@ -39,7 +41,7 @@
true
else
av=${artVersion%%\"*}
- echo "[WARNING] No .qualifier in [$av] ${d}"
+ if [[ $quiet != "true" ]]; then echo "[WARNING] No .qualifier in [$av] ${d}"; fi
av=""
#echo "artVersion[2] = $artVersion"
fi
@@ -54,7 +56,7 @@
true
else
pv=${pomVersion#*<version>}
- echo "[WARNING] No -SNAPSHOT in [$pv] ${d}pom.xml"
+ if [[ $quiet != "true" ]]; then echo "[WARNING] No -SNAPSHOT in [$pv] ${d}pom.xml"; fi
pv=""
fi
pomVersion=${pomVersion%%-SNAPSHOT*}
@@ -79,7 +81,7 @@
true
fi
else
- echo "[WARNING] No pom.xml in $d"
+ if [[ $quiet != "true" ]]; then echo "[WARNING] No pom.xml in $d"; fi
fi
done
13 years, 9 months
JBoss Tools SVN: r30011 - trunk/build/util.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:34:14 -0400 (Thu, 24 Mar 2011)
New Revision: 30011
Modified:
trunk/build/util/checkPOMvsManifest.sh
Log:
suck out ranges of text instead of start + 4 lines; remove both parent and dependencies
Modified: trunk/build/util/checkPOMvsManifest.sh
===================================================================
--- trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:16:53 UTC (rev 30010)
+++ trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:34:14 UTC (rev 30011)
@@ -48,7 +48,7 @@
fi
if [[ -f $d/pom.xml ]]; then
- pomVersionLine=$(cat $d/pom.xml | sed '/<parent>/,+4 d' | sed "s/\t//" | egrep "<version>" | egrep "[0-9]\.[0-9]\.[0-9]" | head -1)
+ pomVersionLine=$(cat $d/pom.xml | sed '/<parent>/,/<\/parent>/ d' | sed '/<dependency>/,/<\/dependency>/ d' | sed '/<parent>/,+4 d' | sed "s/\t//" | egrep "<version>" | egrep "[0-9]\.[0-9]\.[0-9]" | head -1)
pomVersion=${pomVersionLine%%</version>*}
if [[ ${pomVersion##*-SNAPSHOT*} == "" ]]; then # has a -SNAPSHOT suffix
true
13 years, 9 months
JBoss Tools SVN: r30010 - trunk/tests/plugins/org.jboss.tools.tests.performance/META-INF.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:16:53 -0400 (Thu, 24 Mar 2011)
New Revision: 30010
Modified:
trunk/tests/plugins/org.jboss.tools.tests.performance/META-INF/MANIFEST.MF
Log:
make pom and manifest versions match
Modified: trunk/tests/plugins/org.jboss.tools.tests.performance/META-INF/MANIFEST.MF
===================================================================
--- trunk/tests/plugins/org.jboss.tools.tests.performance/META-INF/MANIFEST.MF 2011-03-25 01:16:39 UTC (rev 30009)
+++ trunk/tests/plugins/org.jboss.tools.tests.performance/META-INF/MANIFEST.MF 2011-03-25 01:16:53 UTC (rev 30010)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Performance tests
Bundle-SymbolicName: org.jboss.tools.tests.performance
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 3.1.0.qualifier
Bundle-Activator: org.jboss.tools.tests.performance.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime
13 years, 9 months
JBoss Tools SVN: r30009 - trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:16:39 -0400 (Thu, 24 Mar 2011)
New Revision: 30009
Modified:
trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/feature.xml
Log:
reorder file so that pom/feature.xml checker doesn't fail
Modified: trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/feature.xml
===================================================================
--- trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/feature.xml 2011-03-25 01:16:15 UTC (rev 30008)
+++ trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/feature.xml 2011-03-25 01:16:39 UTC (rev 30009)
@@ -1,4 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.modeshape.rest.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%featureProvider"
+ plugin="org.jboss.tools.modeshape.rest"
+ image="feature.png">
+
<!--
- See the COPYRIGHT.txt file distributed with this work for information
- regarding copyright ownership.
@@ -10,14 +18,6 @@
- See the AUTHORS.txt file in the distribution for a full listing of
- individual contributors.
-->
-<feature
- id="org.jboss.tools.modeshape.rest.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%featureProvider"
- plugin="org.jboss.tools.modeshape.rest"
- image="feature.png">
-
<description>
%description
</description>
13 years, 9 months
JBoss Tools SVN: r30008 - in trunk: vpe/features/org.jboss.tools.xulrunner.feature and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:16:15 -0400 (Thu, 24 Mar 2011)
New Revision: 30008
Modified:
trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF
trunk/vpe/features/org.jboss.tools.xulrunner.feature/pom.xml
Log:
fix version
Modified: trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF 2011-03-25 01:15:52 UTC (rev 30007)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF 2011-03-25 01:16:15 UTC (rev 30008)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: jBPM Eclipse Plug-in
Bundle-SymbolicName: org.jboss.tools.jbpm;singleton:=true
-Bundle-Version: 5.0.0.SNAPSHOT
+Bundle-Version: 5.0.0.qualifier
Bundle-Activator: org.jboss.tools.jbpm.JBPMEclipsePlugin
Bundle-Vendor: JBoss, a division of Red Hat
Bundle-Localization: plugin
Modified: trunk/vpe/features/org.jboss.tools.xulrunner.feature/pom.xml
===================================================================
--- trunk/vpe/features/org.jboss.tools.xulrunner.feature/pom.xml 2011-03-25 01:15:52 UTC (rev 30007)
+++ trunk/vpe/features/org.jboss.tools.xulrunner.feature/pom.xml 2011-03-25 01:16:15 UTC (rev 30008)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.vpe.features</groupId>
<artifactId>org.jboss.tools.xulrunner.feature</artifactId>
- <version>1.9.12.qualifier</version>
+ <version>1.9.12-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
13 years, 9 months
JBoss Tools SVN: r30007 - trunk/build/util.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-24 21:15:52 -0400 (Thu, 24 Mar 2011)
New Revision: 30007
Modified:
trunk/build/util/checkPOMvsManifest.sh
Log:
fix warnings text and suppress parent pom from check; grab first version in file instead of last one (to avoid hitting dependencies)
Modified: trunk/build/util/checkPOMvsManifest.sh
===================================================================
--- trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:01:49 UTC (rev 30006)
+++ trunk/build/util/checkPOMvsManifest.sh 2011-03-25 01:15:52 UTC (rev 30007)
@@ -17,37 +17,48 @@
d=${f/META-INF\/MANIFEST.MF/}; #assume plugin
if [[ $d == $f ]]; then #else feature
d=${f/feature.xml/}
- artVersionLine=$(cat $f | egrep "version=\"[0-9]\.[0-9]\.[0-9]\.qualifier" | egrep "[0-9]\.[0-9]\.[0-9]")
- if [[ ! $artVersionLine ]]; then # not a snapshot version
- artVersionLine=$(cat $f | head -7 | egrep "version=\"[0-9]\.[0-9]\.[0-9].*\".*" | egrep "[0-9]\.[0-9]\.[0-9]" | tail -1)
- artVersion=${artVersionLine##*version=\"}
- artVersion=${artVersion%%\"*}
- #echo "[WARNING] [$altVersion] ${d}feature.xml not .qualifier version."
+ artVersionLine=$(cat $f | head -7 | egrep "version=\"[0-9]\.[0-9]\.[0-9].*\".*" | egrep "[0-9]\.[0-9]\.[0-9]" | tail -1)
+ artVersion=${artVersionLine##*version=\"}
+ #z=${artVersion##.qualifier*}; echo "[$z]"
+ if [[ ${artVersion##*.qualifier*} == "" ]]; then # has a qualifier
+ true
else
- artVersion=${artVersionLine##*version=\"}
- artVersion=${artVersion%%.qualifier*}
+ av=${artVersion%%\"*}
+ echo "[WARNING] No .qualifer in [$av] ${d}feature.xml"
+ av=""
+ #echo "artVersion[2] = $artVersion"
fi
- artVersionLine=" "$altVersionLine
+ artVersion=${artVersion%%.qualifier*}
+ artVersion=${artVersion%%\"*}
+ artVersionLine=" "$artVersionLine
else
artVersionLine=$(cat $f | egrep "Bundle-Version: " | egrep "[0-9]\.[0-9]\.[0-9]" | tr "\r\t\n" "\n" )
artVersion=${artVersionLine##*: }
- artVersion=${artVersion%%.qualifier}
+ #z=${artVersion##.qualifier*}; echo "[$z]"
+ if [[ ${artVersion##*.qualifier*} == "" ]]; then # has a qualifier
+ true
+ else
+ av=${artVersion%%\"*}
+ echo "[WARNING] No .qualifier in [$av] ${d}"
+ av=""
+ #echo "artVersion[2] = $artVersion"
+ fi
+ artVersion=${artVersion%%.qualifier*}
artVersionLine=" "$artVersionLine
fi
if [[ -f $d/pom.xml ]]; then
- pomVersionLine=$(cat $d/pom.xml | sed "s/\t//" | egrep "\.[0-9]-SNAPSHOT" | egrep "[0-9]\.[0-9]\.[0-9]" | tail -1)
- if [[ ! $pomVersionLine ]]; then # not a snapshot version
- #echo "pomVersionLine[1] = $pomVersionLine"
- pomVersionLine=$(cat $d/pom.xml | sed "s/\t//" | egrep "<version>" | egrep "[0-9]\.[0-9]\.[0-9]" | tail -1)
- pomVersion=${pomVersionLine%%</version>*}
- pomVersion=${pomVersion#*<version>}
- #echo "[WARNING] [$pomVersion] ${d}pom.xml not SNAPSHOT version."
+ pomVersionLine=$(cat $d/pom.xml | sed '/<parent>/,+4 d' | sed "s/\t//" | egrep "<version>" | egrep "[0-9]\.[0-9]\.[0-9]" | head -1)
+ pomVersion=${pomVersionLine%%</version>*}
+ if [[ ${pomVersion##*-SNAPSHOT*} == "" ]]; then # has a -SNAPSHOT suffix
+ true
else
- #echo "pomVersionLine[2] = $pomVersionLine"
- pomVersion=${pomVersionLine%%-SNAPSHOT*}
- pomVersion=${pomVersion#*<version>}
+ pv=${pomVersion#*<version>}
+ echo "[WARNING] No -SNAPSHOT in [$pv] ${d}pom.xml"
+ pv=""
fi
+ pomVersion=${pomVersion%%-SNAPSHOT*}
+ pomVersion=${pomVersion#*<version>}
pomVersionLine=" "$pomVersionLine
if [[ $artVersion != $pomVersion ]]; then
@@ -68,7 +79,7 @@
true
fi
else
- echo "[WARNING] $d contains no pom.xml"
+ echo "[WARNING] No pom.xml in $d"
fi
done
13 years, 9 months
JBoss Tools SVN: r30006 - trunk/runtime/features/org.jboss.tools.runtime.test.feature.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-03-24 21:01:49 -0400 (Thu, 24 Mar 2011)
New Revision: 30006
Added:
trunk/runtime/features/org.jboss.tools.runtime.test.feature/.project
trunk/runtime/features/org.jboss.tools.runtime.test.feature/build.properties
trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.xml
trunk/runtime/features/org.jboss.tools.runtime.test.feature/license.html
trunk/runtime/features/org.jboss.tools.runtime.test.feature/pom.xml
Log:
JBIDE-7583 Add tests for org.jboss.tools.runtime plugin
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/.project
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/.project (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/.project 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.runtime.test.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/build.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/build.properties (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/build.properties 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Runtime Detection Test Suite
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss Runtime Detection Test Suite
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors\:\n\
+JBoss by Red Hat - Initial implementation.\n
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.xml
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.xml (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.xml 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.runtime.test.feature"
+ label="Feature"
+ version="1.0.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.jboss.tools.runtime.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/license.html
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/license.html (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/license.html 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/runtime/features/org.jboss.tools.runtime.test.feature/pom.xml
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/pom.xml (rev 0)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/pom.xml 2011-03-25 01:01:49 UTC (rev 30006)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.2-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.runtime.features</groupId>
+ <artifactId>org.jboss.tools.runtime.test.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
\ No newline at end of file
13 years, 9 months
JBoss Tools SVN: r30005 - in trunk/examples/tests/org.jboss.tools.project.examples.test: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-03-24 21:00:54 -0400 (Thu, 24 Mar 2011)
New Revision: 30005
Modified:
trunk/examples/tests/org.jboss.tools.project.examples.test/META-INF/MANIFEST.MF
trunk/examples/tests/org.jboss.tools.project.examples.test/plugin.properties
Log:
JBIDE-8618 Add JUnit tests for Project Examples
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/META-INF/MANIFEST.MF 2011-03-25 00:58:53 UTC (rev 30004)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/META-INF/MANIFEST.MF 2011-03-25 01:00:54 UTC (rev 30005)
@@ -36,3 +36,4 @@
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: org.jboss.tools.project.examples.test
Bundle-Vendor: %BundleVendor
+Bundle-Localization: plugin
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/plugin.properties
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/plugin.properties 2011-03-25 00:58:53 UTC (rev 30004)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/plugin.properties 2011-03-25 01:00:54 UTC (rev 30005)
@@ -1,9 +1,3 @@
#Properties file for org.jboss.tools.project.examples
BundleVendor = JBoss by Red Hat
-BundleName = Project Examples
-JBoss_Tools_category = JBoss Tools
-Project_Examples_wizard = Project Examples
-Project_Examples_command =Project Examples...
-ProjectExamples=Project Examples file
-Project_Examples = Project Examples
-JBoss_Tools_32_Community_Examples = JBoss Tools 3.2 Community Examples
\ No newline at end of file
+BundleName = Project Examples Tests
\ No newline at end of file
13 years, 9 months
JBoss Tools SVN: r30004 - trunk/runtime/features.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-03-24 20:58:53 -0400 (Thu, 24 Mar 2011)
New Revision: 30004
Modified:
trunk/runtime/features/pom.xml
Log:
Modified: trunk/runtime/features/pom.xml
===================================================================
--- trunk/runtime/features/pom.xml 2011-03-25 00:57:36 UTC (rev 30003)
+++ trunk/runtime/features/pom.xml 2011-03-25 00:58:53 UTC (rev 30004)
@@ -14,5 +14,6 @@
<modules>
<module>org.jboss.tools.runtime.core.feature</module>
<module>org.jboss.tools.runtime.feature</module>
+ <module>org.jboss.tools.runtime.test.feature</module>
</modules>
</project>
\ No newline at end of file
13 years, 9 months
JBoss Tools SVN: r30003 - trunk/runtime/features.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-03-24 20:57:36 -0400 (Thu, 24 Mar 2011)
New Revision: 30003
Added:
trunk/runtime/features/org.jboss.tools.runtime.test.feature/
Log:
Initial import.
13 years, 9 months