JBoss Tools SVN: r31041 - in trunk/cdi/tests: org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-05-03 12:58:23 -0400 (Tue, 03 May 2011)
New Revision: 31041
Added:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/EventEmitter.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetriever.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetrieverLocal.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/MyEventType.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/NonRuntimeBindingType.java
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java
Log:
https://issues.jboss.org/browse/JBIDE-8799
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/EventEmitter.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/EventEmitter.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/EventEmitter.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.jsr299.tck.tests.jbt.search;
+
+import javax.enterprise.event.Event;
+import javax.enterprise.inject.Any;
+import javax.inject.Inject;
+
+class EventEmitter
+{
+ @Inject @Any Event<MyEventType> myEvent;
+
+ @Inject @Any @NonRuntimeBindingType Event<MyEventType> myEventWithAnyAndNonRuntimeBindingType;
+
+ @Inject @NonRuntimeBindingType Event<MyEventType> myEventWithOnlyNonRuntimeBindingType;
+
+ public void fireEvent()
+ {
+ myEvent.fire("event");
+ }
+
+ public void fireEventWithNonRuntimeBindingType()
+ {
+ myEventWithAnyAndNonRuntimeBindingType.fire("event");
+ }
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/EventEmitter.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetriever.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetriever.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetriever.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.jsr299.tck.tests.jbt.search;
+
+import javax.ejb.Remove;
+import javax.ejb.Stateful;
+import javax.enterprise.context.RequestScoped;
+import javax.enterprise.event.Observes;
+
+@Stateful
+@RequestScoped
+class GoldenRetriever implements GoldenRetrieverLocal
+{
+ @Remove
+ public void bye(Object something) {
+
+ }
+
+ public void anObserverMethod(@Observes MyEventType event)
+ {
+
+ }
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetriever.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetrieverLocal.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetrieverLocal.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetrieverLocal.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -0,0 +1,29 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.jsr299.tck.tests.jbt.search;
+
+import javax.ejb.Local;
+
+@Local
+public interface GoldenRetrieverLocal
+{
+
+ public void bye(Object something);
+
+ public void anObserverMethod(MyTypeEvent event);
+
+}
\ No newline at end of file
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/GoldenRetrieverLocal.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/MyEventType.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/MyEventType.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/MyEventType.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -0,0 +1,6 @@
+package org.jboss.jsr299.tck.tests.jbt.search;
+
+
+public class MyEventType {
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/MyEventType.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/NonRuntimeBindingType.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/NonRuntimeBindingType.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/NonRuntimeBindingType.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -0,0 +1,33 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.jsr299.tck.tests.jbt.search;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.PARAMETER;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+@Target( { FIELD, PARAMETER })
+@Qualifier
+(a)Retention(RetentionPolicy.CLASS)
+@interface NonRuntimeBindingType
+{
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/search/NonRuntimeBindingType.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java 2011-05-03 16:46:14 UTC (rev 31040)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java 2011-05-03 16:58:23 UTC (rev 31041)
@@ -158,32 +158,21 @@
matches.add(new MatchStructure(EventBean.class, "Event"));
- matches.add(new MatchStructure(ObserverMethod.class, "DiscerningObserver.observeAny()"));
matches.add(new MatchStructure(ObserverMethod.class, "EventTypeFamilyObserver.observeObject()"));
- matches.add(new MatchStructure(ObserverMethod.class, "Fox.observeEvent()"));
matches.add(new MatchStructure(ObserverMethod.class, "GoldenRetriever.anObserverMethod()"));
- matches.add(new MatchStructure(ObserverMethod.class, "Pomeranian.observeStringEvent()"));
- matches.add(new MatchStructure(ObserverMethod.class, "StringObserver.anotherObserver()"));
- matches.add(new MatchStructure(ObserverMethod.class, "TeaCupPomeranian.observeSimpleEvent()"));
- matches.add(new MatchStructure(ObserverMethod.class, "Terrier.observer()"));
- matches.add(new MatchStructure(ObserverMethod.class, "TibetanTerrier_Broken.observeSomeEvent()"));
- matches.add(new MatchStructure(ObserverMethod.class, "TibetanTerrier_BrokenNoInterface.observeSomeEvent()"));
matches.add(new MatchStructure(ObserverMethod.class, "ClassFragmentLogger.addEntry()"));
- matches.add(new MatchStructure(ObserverMethod.class, "ObserverMethodInInterceptorBroken.observeSomeEvent()"));
- matches.add(new MatchStructure(ObserverMethod.class, "ObserverMethodInDecoratorBroken.observeSomeEvent()"));
- testSearchParticipant("JavaSource/org/jboss/jsr299/tck/tests/event/bindingTypes/EventEmitter.java", FIELD_SEARCH, "stringEvent", "", new InjectionPointQueryParticipant(), matches);
+ testSearchParticipant("JavaSource/org/jboss/jsr299/tck/tests/jbt/search/EventEmitter.java", FIELD_SEARCH, "myEvent", "", new InjectionPointQueryParticipant(), matches);
}
public void testInjectionPointQueryParticipant4(){
ArrayList<MatchStructure> matches = new ArrayList<MatchStructure>();
- matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.stringEvent"));
- matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.stringEventWithAnyAndNonRuntimeBindingType"));
- matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.stringEventWithOnlyNonRuntimeBindingType"));
- matches.add(new MatchStructure(InjectionPointField.class, "OwlFinch_Broken.simpleEvent"));
+ matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.myEvent"));
+ matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.myEventWithAnyAndNonRuntimeBindingType"));
+ matches.add(new MatchStructure(InjectionPointField.class, "EventEmitter.myEventWithOnlyNonRuntimeBindingType"));
- testSearchParticipant("JavaSource/org/jboss/jsr299/tck/tests/implementation/enterprise/newBean/GoldenRetriever.java", METHOD_SEARCH, "anObserverMethod", "", new InjectionPointQueryParticipant(), matches);
+ testSearchParticipant("JavaSource/org/jboss/jsr299/tck/tests/jbt/search/GoldenRetriever.java", METHOD_SEARCH, "anObserverMethod", "", new InjectionPointQueryParticipant(), matches);
}
public void testCDIBeanQueryParticipant(){
13 years, 8 months
JBoss Tools SVN: r31040 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-05-03 12:46:14 -0400 (Tue, 03 May 2011)
New Revision: 31040
Modified:
trunk/build/parent/pom.xml
Log:
fix for errors in parent/pom.xml
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2011-05-03 16:44:18 UTC (rev 31039)
+++ trunk/build/parent/pom.xml 2011-05-03 16:46:14 UTC (rev 31040)
@@ -189,12 +189,12 @@
<version>${tychoVersion}</version>
<configuration>
<encoding>UTF-8</encoding>
- </configuration>
- <!-- not strictly needed but this suppresses warnings when compiling
- that the default value (1.5) is being overwritten by the value in the MANIFEST.MF.
- You can use this in your plugins or their aggregator pom.xml files to set
- this for your plugins -->
- <configuration>
+
+ <!-- not strictly needed but this suppresses warnings when compiling
+ that the default value (1.5) is being overwritten by the value in the MANIFEST.MF.
+ You can use this in your plugins or their aggregator pom.xml files to set
+ this for your plugins -->
+
<!-- <source>1.6</source> -->
<!-- <target>1.6</target> -->
</configuration>
13 years, 8 months
JBoss Tools SVN: r31039 - branches/jbosstools-3.2.x/build/parent.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-05-03 12:44:18 -0400 (Tue, 03 May 2011)
New Revision: 31039
Modified:
branches/jbosstools-3.2.x/build/parent/pom.xml
Log:
fix for parent pom parsing error in 3.2.x branch
Modified: branches/jbosstools-3.2.x/build/parent/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/build/parent/pom.xml 2011-05-03 16:31:08 UTC (rev 31038)
+++ branches/jbosstools-3.2.x/build/parent/pom.xml 2011-05-03 16:44:18 UTC (rev 31039)
@@ -194,15 +194,16 @@
<version>${tychoVersion}</version>
<configuration>
<encoding>UTF-8</encoding>
- </configuration>
- <!-- not strictly needed but this suppresses warnings when compiling
+
+ <!-- not strictly needed but this suppresses warnings when compiling
that the default value (1.5) is being overwritten by the value in the MANIFEST.MF.
You can use this in your plugins or their aggregator pom.xml files to set
this for your plugins -->
- <configuration>
+
<!-- <source>1.6</source> -->
<!-- <target>1.6</target> -->
</configuration>
+
</plugin>
<!-- these two plugins copied in from Chris Aniszczyk's Minerva parent
pom; also need org.sonatype.tycho:maven-osgi-compiler-plugin, above -->
13 years, 8 months
JBoss Tools SVN: r31038 - trunk/vpe/plugins/org.jboss.tools.vpe/ve.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-05-03 12:31:08 -0400 (Tue, 03 May 2011)
New Revision: 31038
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/ve/EditorOverride.css
Log:
https://issues.jboss.org/browse/JBIDE-8834 Background defined in CSS styles is rendered twice for html element
fixed errors in EditorOverride.css file
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/ve/EditorOverride.css
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/ve/EditorOverride.css 2011-05-03 15:57:01 UTC (rev 31037)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/ve/EditorOverride.css 2011-05-03 16:31:08 UTC (rev 31038)
@@ -373,10 +373,10 @@
}
span.vpe-text {
- background :inherit !important; */
+ background :inherit !important;
background-image:none !important;
- border :0px !important; */
- bottom :inherit !important; */
+ border :0px !important;
+ bottom :inherit !important;
caption-side :inherit !important;
clear :inherit !important;
clip :inherit !important;
13 years, 8 months
JBoss Tools SVN: r31037 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-03 11:57:01 -0400 (Tue, 03 May 2011)
New Revision: 31037
Modified:
trunk/build/parent/pom.xml
Log:
add changes needed to enable source plugin generation w/ Tycho
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2011-05-03 15:56:32 UTC (rev 31036)
+++ trunk/build/parent/pom.xml 2011-05-03 15:57:01 UTC (rev 31037)
@@ -45,6 +45,7 @@
</properties>
<build>
+ <sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
@@ -186,6 +187,9 @@
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-compiler-plugin</artifactId>
<version>${tychoVersion}</version>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ </configuration>
<!-- not strictly needed but this suppresses warnings when compiling
that the default value (1.5) is being overwritten by the value in the MANIFEST.MF.
You can use this in your plugins or their aggregator pom.xml files to set
@@ -195,7 +199,32 @@
<!-- <target>1.6</target> -->
</configuration>
</plugin>
-
+ <!-- these two plugins copied in from Chris Aniszczyk's Minerva parent
+ pom; also need org.sonatype.tycho:maven-osgi-compiler-plugin, above -->
+ <plugin>
+ <!-- TODO remove workaround when https://issues.sonatype.org/browse/TYCHO-473
+ is fixed -->
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-source-plugin</artifactId>
+ <version>${tychoVersion}</version>
+ <executions>
+ <execution>
+ <id>attach-source</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>plugin-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.1</version>
+ <configuration>
+ <encoding>ISO-8859-1</encoding>
+ </configuration>
+ </plugin>
</plugins>
</build>
13 years, 8 months
JBoss Tools SVN: r31036 - branches/jbosstools-3.2.x/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-03 11:56:32 -0400 (Tue, 03 May 2011)
New Revision: 31036
Modified:
branches/jbosstools-3.2.x/build/parent/pom.xml
Log:
add changes needed to enable source plugin generation w/ Tycho
Modified: branches/jbosstools-3.2.x/build/parent/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/build/parent/pom.xml 2011-05-03 13:54:06 UTC (rev 31035)
+++ branches/jbosstools-3.2.x/build/parent/pom.xml 2011-05-03 15:56:32 UTC (rev 31036)
@@ -50,6 +50,7 @@
</properties>
<build>
+ <sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
@@ -191,6 +192,9 @@
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-compiler-plugin</artifactId>
<version>${tychoVersion}</version>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ </configuration>
<!-- not strictly needed but this suppresses warnings when compiling
that the default value (1.5) is being overwritten by the value in the MANIFEST.MF.
You can use this in your plugins or their aggregator pom.xml files to set
@@ -200,7 +204,32 @@
<!-- <target>1.6</target> -->
</configuration>
</plugin>
-
+ <!-- these two plugins copied in from Chris Aniszczyk's Minerva parent
+ pom; also need org.sonatype.tycho:maven-osgi-compiler-plugin, above -->
+ <plugin>
+ <!-- TODO remove workaround when https://issues.sonatype.org/browse/TYCHO-473
+ is fixed -->
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-source-plugin</artifactId>
+ <version>${tychoVersion}</version>
+ <executions>
+ <execution>
+ <id>attach-source</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>plugin-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.1</version>
+ <configuration>
+ <encoding>ISO-8859-1</encoding>
+ </configuration>
+ </plugin>
</plugins>
</build>
13 years, 8 months
JBoss Tools SVN: r31035 - trunk/forge/plugins/org.jboss.tools.seam.forge/lib.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-05-03 09:54:06 -0400 (Tue, 03 May 2011)
New Revision: 31035
Added:
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-impl.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-maven-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-project-model-maven.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-plugins.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/metawidget-forge.jar
Removed:
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/commands.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/el-impl.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/expressions.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/filesystem.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-j2ee-plugins.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-project-model.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/registry.jar
Modified:
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/activation.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-dev-plugins.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-git-tools.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-java-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-java.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-xml.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-reference-guide.war
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-shell-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-shell.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jaxrs-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-jaspi-api_1.0_spec.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-javaee-6.0.pom
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsf-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsr181-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsr250-api.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/seam-render.jar
trunk/forge/plugins/org.jboss.tools.seam.forge/lib/shrinkwrap-descriptors-api.jar
Log:
update forge to a snapshot that has the windows and the 80 character limit patch
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/activation.jar
===================================================================
(Binary files differ)
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/commands.jar
===================================================================
(Binary files differ)
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/el-impl.jar
===================================================================
(Binary files differ)
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/expressions.jar
===================================================================
(Binary files differ)
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/filesystem.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-dev-plugins.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-git-tools.jar
===================================================================
(Binary files differ)
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-j2ee-plugins.jar
===================================================================
(Binary files differ)
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-api.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-api.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-impl.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-javaee-impl.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-maven-api.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-maven-api.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-java-api.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-java.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-parser-xml.jar
===================================================================
(Binary files differ)
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-project-model-maven.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-project-model-maven.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-project-model.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-reference-guide.war
===================================================================
(Binary files differ)
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-api.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-api.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-plugins.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold-plugins.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-scaffold.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-shell-api.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/forge-shell.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jaxrs-api.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-jaspi-api_1.0_spec.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-javaee-6.0.pom
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-javaee-6.0.pom 2011-05-03 12:56:05 UTC (rev 31034)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jboss-javaee-6.0.pom 2011-05-03 13:54:06 UTC (rev 31035)
@@ -7,20 +7,20 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jboss-javaee-6.0</artifactId>
- <version>1.0.0.CR1</version>
+ <version>1.0.0.Final</version>
<packaging>pom</packaging>
<name>JBoss Java EE 6.0 API Aggregate</name>
<description>Java EE 6.0 APIs for use with JBoss AS 6</description>
<!-- Properties -->
<properties>
- <version.jboss.javaee6.bom>1.0.0.CR1</version.jboss.javaee6.bom>
+ <version.jboss.javaee6.bom>1.0.1.Final</version.jboss.javaee6.bom>
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/specs/tags/jboss-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/specs/tags/jboss-jav...</developerConnection>
- <url>http://fisheye.jboss.org/browse/JBossAS/projects/specs/tags/jboss-javaee-...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/specs/tags/jboss-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/specs/tags/jboss-jav...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/JBossAS/projects/specs/tags/jboss-javaee-...</url>
</scm>
<!-- This repository declaration exists so that Maven 2.2.x clients will download the Spec BOM. -->
@@ -137,7 +137,7 @@
<artifactId>cdi-api</artifactId>
</dependency>
<dependency>
- <groupId>javax.faces</groupId>
+ <groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
</dependency>
<dependency>
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsf-api.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsr181-api.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/jsr250-api.jar
===================================================================
(Binary files differ)
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/metawidget-forge.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/metawidget-forge.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/registry.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/seam-render.jar
===================================================================
(Binary files differ)
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/lib/shrinkwrap-descriptors-api.jar
===================================================================
(Binary files differ)
13 years, 8 months
JBoss Tools SVN: r31034 - trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial.
by jbosstools-commits@lists.jboss.org
Author: jlukas(a)redhat.com
Date: 2011-05-03 08:56:05 -0400 (Tue, 03 May 2011)
New Revision: 31034
Modified:
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java
Log:
button tooltip update
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java 2011-05-03 12:55:41 UTC (rev 31033)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java 2011-05-03 12:56:05 UTC (rev 31034)
@@ -482,7 +482,6 @@
bot.sleep(1000);
util.waitForNonIgnoredJobs();
bot.sleep(1500);
-// tb = bot.activeShell().bot().toolbarButtonWithTooltip("Change Timestamp of " + PROJECT_NAME);
tb = bot.activeShell().bot().toolbarButtonWithTooltip("Touch descriptors");
tb.click();
ed.show();
13 years, 8 months
JBoss Tools SVN: r31033 - trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial.
by jbosstools-commits@lists.jboss.org
Author: jlukas(a)redhat.com
Date: 2011-05-03 08:55:41 -0400 (Tue, 03 May 2011)
New Revision: 31033
Modified:
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java
Log:
button tooltip update
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java 2011-05-03 12:15:06 UTC (rev 31032)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/tutorial/TutorialTest.java 2011-05-03 12:55:41 UTC (rev 31033)
@@ -481,7 +481,9 @@
bot.activeShell().bot().menu("File").menu("Save All").click();
bot.sleep(1000);
util.waitForNonIgnoredJobs();
- tb = bot.activeShell().bot().toolbarButtonWithTooltip("Change Timestamp of " + PROJECT_NAME);
+ bot.sleep(1500);
+// tb = bot.activeShell().bot().toolbarButtonWithTooltip("Change Timestamp of " + PROJECT_NAME);
+ tb = bot.activeShell().bot().toolbarButtonWithTooltip("Touch descriptors");
tb.click();
ed.show();
String out2 = refreshBrowser(browser);
13 years, 8 months
JBoss Tools SVN: r31032 - in trunk/as: plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7 and 4 other directories.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-05-03 08:15:06 -0400 (Tue, 03 May 2011)
New Revision: 31032
Added:
trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/
trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/org.eclipse.jdt.core.prefs
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/IJBoss7ManagerService.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServiceProxy.java
trunk/as/plugins/org.jboss.ide.eclipse.as.management.as7/src/org/jboss/ide/eclipse/as/management/as7/deployment/JBoss7ManagerService.java
trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/server/JBossManagerTest.java
Log:
[JBIDE-8836] added capability to query the as7 for its state
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/IJBoss7ManagerService.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/IJBoss7ManagerService.java 2011-05-03 12:10:45 UTC (rev 31031)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/IJBoss7ManagerService.java 2011-05-03 12:15:06 UTC (rev 31032)
@@ -16,6 +16,7 @@
import org.jboss.ide.eclipse.as.core.server.internal.v7.IJBoss7DeploymentResult;
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7DeploymentState;
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ManangerException;
+import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ServerState;
public interface IJBoss7ManagerService {
@@ -119,6 +120,17 @@
public JBoss7DeploymentState getDeploymentState(String host, int port, String deploymentName) throws Exception;
/**
+ * Returns the state of the server
+ *
+ * @param host the server to query
+ * @param port the port to communicate on
+ * @return the state of the server
+ *
+ * @throws Exception
+ */
+ public JBoss7ServerState getServerState(String host, int port) throws Exception;
+
+ /**
* Stops the given server
*
* @throws JBoss7ManangerException
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServiceProxy.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServiceProxy.java 2011-05-03 12:10:45 UTC (rev 31031)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServiceProxy.java 2011-05-03 12:15:06 UTC (rev 31032)
@@ -43,6 +43,10 @@
return checkedGetService().getDeploymentState(host, port, deploymentName);
}
+ public JBoss7ServerState getServerState(String host, int port) throws Exception {
+ return checkedGetService().getServerState(host, port);
+ }
+
public void stop(String host, int port) throws Exception {
checkedGetService().stop(host, port);
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.management.as7/src/org/jboss/ide/eclipse/as/management/as7/deployment/JBoss7ManagerService.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.management.as7/src/org/jboss/ide/eclipse/as/management/as7/deployment/JBoss7ManagerService.java 2011-05-03 12:10:45 UTC (rev 31031)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.management.as7/src/org/jboss/ide/eclipse/as/management/as7/deployment/JBoss7ManagerService.java 2011-05-03 12:15:06 UTC (rev 31032)
@@ -16,6 +16,7 @@
import org.jboss.ide.eclipse.as.core.server.IJBoss7ManagerService;
import org.jboss.ide.eclipse.as.core.server.internal.v7.IJBoss7DeploymentResult;
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7DeploymentState;
+import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ServerState;
/**
* @author Rob Stryker
@@ -51,6 +52,11 @@
return manager.getDeploymentState(deploymentName);
}
+ public JBoss7ServerState getServerState(String host, int port) throws Exception {
+ AS7Manager manager = new AS7Manager(host, port);
+ return manager.getServerState();
+ }
+
public void stop(String host) throws Exception {
new AS7Manager(host).stopServer();
}
Added: trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/org.eclipse.jdt.core.prefs 2011-05-03 12:15:06 UTC (rev 31032)
@@ -0,0 +1,12 @@
+#Thu Apr 28 18:15:44 CEST 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
Property changes on: trunk/as/tests/org.jboss.ide.eclipse.as.test/.settings/org.eclipse.jdt.core.prefs
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/server/JBossManagerTest.java
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/server/JBossManagerTest.java 2011-05-03 12:10:45 UTC (rev 31031)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/server/JBossManagerTest.java 2011-05-03 12:15:06 UTC (rev 31032)
@@ -12,6 +12,7 @@
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7DeploymentState;
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ManagerServiceProxy;
import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ManangerException;
+import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ServerState;
import org.jboss.ide.eclipse.as.test.ASTest;
import org.junit.Test;
import org.osgi.framework.BundleContext;
@@ -86,6 +87,10 @@
throw new UnsupportedOperationException();
}
+ public JBoss7ServerState getServerState(String host, int port) throws Exception {
+ throw new UnsupportedOperationException();
+ }
+
public void stop(String host, int port) throws JBoss7ManangerException {
}
13 years, 8 months