You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/03/09 19:09:53 UTC

svn commit: r516487 - /incubator/tuscany/java/spec/sdo-api/pom.xml

Author: rfeng
Date: Fri Mar  9 10:09:52 2007
New Revision: 516487

URL: http://svn.apache.org/viewvc?view=rev&rev=516487
Log:
Use surefire plugin version 2.3 to work around a bug in surefire 2.3.1-SNAPSHOT

Modified:
    incubator/tuscany/java/spec/sdo-api/pom.xml

Modified: incubator/tuscany/java/spec/sdo-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/spec/sdo-api/pom.xml?view=diff&rev=516487&r1=516486&r2=516487
==============================================================================
--- incubator/tuscany/java/spec/sdo-api/pom.xml (original)
+++ incubator/tuscany/java/spec/sdo-api/pom.xml Fri Mar  9 10:09:52 2007
@@ -1,21 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you 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.    
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you 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.    
 -->
 <project>
     <modelVersion>4.0.0</modelVersion>
@@ -74,6 +74,21 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.3</version>
+                <configuration>
+                    <includes>
+                        <include>**/*TestCase.java</include>
+                    </includes>
+                    <reportFormat>brief</reportFormat>
+                    <useFile>false</useFile>
+                    <forkMode>once</forkMode>
+                    <argLine>-ea</argLine>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <source>1.4</source>
@@ -92,7 +107,10 @@
                         <bundleVendor>${pom.organization.name}</bundleVendor>
                         <bundleLocalization>plugin</bundleLocalization>
                         <bundleSymbolicName>commonj.sdo</bundleSymbolicName>
-                        <exportPackage>commonj.sdo;version="${specVersion}", commonj.sdo.helper;version="${specVersion}, commonj.sdo.impl;version="${specVersion}"</exportPackage>
+                        <exportPackage>
+                            commonj.sdo;version="${specVersion}", commonj.sdo.helper;version="${specVersion},
+                            commonj.sdo.impl;version="${specVersion}"
+                        </exportPackage>
                     </osgiManifest>
                 </configuration>
             </plugin>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org