You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by sa...@apache.org on 2009/09/14 17:07:05 UTC

svn commit: r814680 - in /webservices/woden/trunk/java/woden-qname: ./ pom.xml src/ src/main/ src/main/java/ src/main/resources/ src/test/ src/test/java/ src/test/resources/

Author: sagara
Date: Mon Sep 14 15:07:04 2009
New Revision: 814680

URL: http://svn.apache.org/viewvc?rev=814680&view=rev
Log:
Add empty module for woden-qname.

Added:
    webservices/woden/trunk/java/woden-qname/
    webservices/woden/trunk/java/woden-qname/pom.xml   (with props)
    webservices/woden/trunk/java/woden-qname/src/
    webservices/woden/trunk/java/woden-qname/src/main/
    webservices/woden/trunk/java/woden-qname/src/main/java/
    webservices/woden/trunk/java/woden-qname/src/main/resources/
    webservices/woden/trunk/java/woden-qname/src/test/
    webservices/woden/trunk/java/woden-qname/src/test/java/
    webservices/woden/trunk/java/woden-qname/src/test/resources/

Added: webservices/woden/trunk/java/woden-qname/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-qname/pom.xml?rev=814680&view=auto
==============================================================================
--- webservices/woden/trunk/java/woden-qname/pom.xml (added)
+++ webservices/woden/trunk/java/woden-qname/pom.xml Mon Sep 14 15:07:04 2009
@@ -0,0 +1,130 @@
+<?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.
+ !-->
+<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/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+       <groupId>org.apache.woden</groupId>
+       <artifactId>woden</artifactId>
+       <version>1.0-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>woden-qname</artifactId>
+   <name>Woden - QName</name>
+   
+   <build>
+       <resources>
+           <resource>
+               <targetPath>META-INF</targetPath>
+               <directory>../</directory>
+               <includes>
+                   <include>LICENSE</include>
+                   <include>README</include>
+                   <include>NOTICE</include>
+               </includes>
+           </resource>
+           <resource>
+             <directory>src/main/resources</directory>
+           </resource>
+       </resources>
+
+       <plugins>
+           <plugin>
+               <artifactId>maven-compiler-plugin</artifactId>
+               <configuration>
+                   <source>1.4</source>
+                   <target>1.4</target>
+                   <compilerArgument>-g</compilerArgument>
+               </configuration>
+           </plugin>
+           <plugin>
+               <artifactId>maven-one-plugin</artifactId>
+               <executions>
+                   <execution>
+                       <goals>
+                           <goal>install-maven-one-repository</goal>
+                           <goal>deploy-maven-one-repository</goal>
+                       </goals>
+                   </execution>
+               </executions>
+               <configuration>
+                   <remoteRepositoryId>apache</remoteRepositoryId>
+                   <remoteRepositoryUrl>
+                       scpexe://people.apache.org/www/people.apache.org/repo/m1-snapshot-repository
+                   </remoteRepositoryUrl>
+               </configuration>
+           </plugin>
+       </plugins>
+   </build>
+	
+	
+	
+   <profiles>
+	   <!--
+		   From Java 5.0 the QName class is included in the jre and loaded by the bootstrap 
+           classloader, so we don't want to run Woden's QName ests against the Java 5 
+           implementation. However, we are running in a 1.4 jvm now, so the Woden QName class 
+           will be loaded and we do want to run the Woden junit tests for this class.		   
+		   -->
+	   
+	<!-- for java 5 -->
+    <profile>
+	   <id>jdk1.5</id>
+       <activation>
+           <jdk>1.5</jdk>		   
+       </activation>  
+	   <build>     
+        <plugins>
+          <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-surefire-plugin</artifactId>
+           <configuration> 
+			 <excludes>			
+			    <exclude>**/QNameDeserializeTest.java</exclude>	
+			</excludes>
+		  </configuration>
+		</plugin>
+	   </plugins>
+	 </build>
+    </profile>
+	
+	 <!-- for java 6  --> 
+	 <profile>
+	   <id>jdk1.6</id>
+       <activation>
+           <jdk>1.6</jdk>		   
+       </activation>  
+	   <build>     
+        <plugins>
+          <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-surefire-plugin</artifactId>
+           <configuration> 
+			 <excludes>			
+			    <exclude>**/QNameDeserializeTest.java</exclude>	
+			</excludes>
+		  </configuration>
+		</plugin>
+	   </plugins>
+	 </build>
+    </profile>
+	
+</profiles>
+</project>

Propchange: webservices/woden/trunk/java/woden-qname/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native



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