Weld SVN: r5970 - doc/trunk/reference/en-US.
by weld-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2010-03-02 08:02:18 -0500 (Tue, 02 Mar 2010)
New Revision: 5970
Modified:
doc/trunk/reference/en-US/Book_Info.xml
Log:
update bookinfo to work with new publican
Modified: doc/trunk/reference/en-US/Book_Info.xml
===================================================================
--- doc/trunk/reference/en-US/Book_Info.xml 2010-03-01 20:33:43 UTC (rev 5969)
+++ doc/trunk/reference/en-US/Book_Info.xml 2010-03-02 13:02:18 UTC (rev 5970)
@@ -3,10 +3,21 @@
<bookinfo>
<title>Weld - JSR-299 Reference Implementation</title>
<subtitle>
- JSR-299: The new Java standard for dependency injection and contextual lifecycle management
+ JSR-299: The new Java standard for dependency injection and
+ contextual lifecycle management
</subtitle>
+ <edition>1.0</edition>
+ <pubsnumber>1</pubsnumber>
+ <productname>Seam</productname>
+ <productnumber>1.0</productnumber>
+ <copyright>
+ <year>&YEAR;
+ </year>
+ <holder>&HOLDER;
+ </holder>
+ </copyright>
<xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-<!--
+ <!--
vim:et:ts=3:sw=3:tw=120
-->
</bookinfo>
14 years, 8 months
Weld SVN: r5969 - core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint.
by weld-commits@lists.jboss.org
Author: marius.bogoevici
Date: 2010-03-01 15:33:43 -0500 (Mon, 01 Mar 2010)
New Revision: 5969
Added:
core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecialLiteral.java
Modified:
core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecial.java
core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/PigSty.java
Log:
Refactoring ExtraSpecial/ExtraSpecialLiteral to work around compilation problems encountered in different environments.
Modified: core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecial.java
===================================================================
--- core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecial.java 2010-03-01 10:17:01 UTC (rev 5968)
+++ core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecial.java 2010-03-01 20:33:43 UTC (rev 5969)
@@ -1,8 +1,8 @@
/*
* 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.
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, 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.
@@ -25,7 +25,6 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import javax.enterprise.util.AnnotationLiteral;
import javax.inject.Qualifier;
@Qualifier
@@ -34,13 +33,4 @@
public @interface ExtraSpecial
{
- static class ExtraSpecialLiteral extends AnnotationLiteral<ExtraSpecial> implements ExtraSpecial
- {
-
- private ExtraSpecialLiteral() {}
-
- }
-
- public static final ExtraSpecial INSTANCE = new ExtraSpecialLiteral();
-
}
Added: core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecialLiteral.java
===================================================================
--- core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecialLiteral.java (rev 0)
+++ core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/ExtraSpecialLiteral.java 2010-03-01 20:33:43 UTC (rev 5969)
@@ -0,0 +1,29 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, 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.weld.tests.injectionPoint;
+
+import javax.enterprise.util.AnnotationLiteral;
+
+public class ExtraSpecialLiteral extends AnnotationLiteral<ExtraSpecial> implements ExtraSpecial
+{
+ public static final ExtraSpecial INSTANCE = new ExtraSpecialLiteral();
+
+ private ExtraSpecialLiteral() {
+ }
+
+}
Modified: core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/PigSty.java
===================================================================
--- core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/PigSty.java 2010-03-01 10:17:01 UTC (rev 5968)
+++ core/trunk/tests/src/test/java/org/jboss/weld/tests/injectionPoint/PigSty.java 2010-03-01 20:33:43 UTC (rev 5969)
@@ -1,3 +1,20 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, 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.weld.tests.injectionPoint;
import javax.enterprise.inject.Instance;
@@ -9,7 +26,7 @@
public Pig getPig()
{
- return pig.select(ExtraSpecial.INSTANCE).get();
+ return pig.select(ExtraSpecialLiteral.INSTANCE).get();
}
}
14 years, 8 months
Weld SVN: r5968 - core/trunk/jboss-as.
by weld-commits@lists.jboss.org
Author: nickarls
Date: 2010-03-01 05:17:01 -0500 (Mon, 01 Mar 2010)
New Revision: 5968
Modified:
core/trunk/jboss-as/pom.xml
Log:
upgrade to 1.0.2-SNAPSHOT
Modified: core/trunk/jboss-as/pom.xml
===================================================================
--- core/trunk/jboss-as/pom.xml 2010-02-28 21:39:07 UTC (rev 5967)
+++ core/trunk/jboss-as/pom.xml 2010-03-01 10:17:01 UTC (rev 5968)
@@ -4,12 +4,12 @@
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core-jboss-as-updater</artifactId>
<packaging>pom</packaging>
- <version>1.0.1-SNAPSHOT</version>
+ <version>1.0.2-SNAPSHOT</version>
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core-parent</artifactId>
- <version>1.0.1-SNAPSHOT</version>
+ <version>1.0.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
14 years, 8 months