You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yoko-commits@incubator.apache.org by en...@apache.org on 2006/04/04 09:18:43 UTC

svn commit: r391257 - in /incubator/yoko/trunk/tools: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/yoko/ src/main/java/org/apache/yoko/tools/ src/main/java/org/apache/yoko/tools/common/ src/test...

Author: enolan
Date: Tue Apr  4 02:18:40 2006
New Revision: 391257

URL: http://svn.apache.org/viewcvs?rev=391257&view=rev
Log:
Adding tools directory

Added:
    incubator/yoko/trunk/tools/
    incubator/yoko/trunk/tools/pom.xml   (with props)
    incubator/yoko/trunk/tools/src/
    incubator/yoko/trunk/tools/src/main/
    incubator/yoko/trunk/tools/src/main/java/
    incubator/yoko/trunk/tools/src/main/java/org/
    incubator/yoko/trunk/tools/src/main/java/org/apache/
    incubator/yoko/trunk/tools/src/main/java/org/apache/yoko/
    incubator/yoko/trunk/tools/src/main/java/org/apache/yoko/tools/
    incubator/yoko/trunk/tools/src/main/java/org/apache/yoko/tools/common/
    incubator/yoko/trunk/tools/src/test/
    incubator/yoko/trunk/tools/src/test/java/
    incubator/yoko/trunk/tools/src/test/resources/

Added: incubator/yoko/trunk/tools/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/yoko/trunk/tools/pom.xml?rev=391257&view=auto
==============================================================================
--- incubator/yoko/trunk/tools/pom.xml (added)
+++ incubator/yoko/trunk/tools/pom.xml Tue Apr  4 02:18:40 2006
@@ -0,0 +1,111 @@
+<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>
+    <groupId>org.apache.yoko</groupId>
+    <artifactId>yoko-tools</artifactId>
+    <packaging>jar</packaging>
+    <version>1.0-SNAPSHOT</version>
+    <name>Yoko Command Line Tools</name>
+
+    <parent>
+        <groupId>org.apache.yoko</groupId>
+        <artifactId>Yoko</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <properties>
+        <topDirectoryLocation>..</topDirectoryLocation>
+        
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>easymock</groupId>
+            <artifactId>easymockclassextension</artifactId>
+            <version>2.0-20050821.154600</version>
+            <scope>test</scope>
+        </dependency>        
+        <dependency>
+            <groupId>wsdl4j</groupId>
+            <artifactId>wsdl4j</artifactId>
+            <version>1.5.2</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.xml</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>${jaxws.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <version>2.0-JAXWS-2.0-EA3</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml</groupId>
+                    <artifactId>jsr173-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>        
+        <dependency>
+            <groupId>javax.xml</groupId>
+            <artifactId>jaxws-api</artifactId>
+            <version>${jaxws.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.objectweb.celtix</groupId>
+            <artifactId>celtix-api</artifactId>
+            <version>${celtix.version}</version>
+        </dependency>
+        
+    </dependencies>
+
+
+     <profiles>
+       <profile>
+         <!-- NOTE I: This will not be activated on OS X, since
+	      classes.jar already has the tools in it. 
+	      NOTE II: This will probably break on the IBM JDK.
+	 -->
+         <id>default-tools.jar</id>
+         <activation>
+	   <property>
+             <name>java.vendor</name>
+             <value>Sun Microsystems Inc.</value>
+           </property>
+         </activation>
+         <dependencies>
+         <dependency>
+           <groupId>sun.jdk</groupId>
+           <artifactId>tools</artifactId>
+           <version>1.5.0</version>
+           <scope>system</scope>
+           <systemPath>${java.home}/../lib/tools.jar</systemPath>
+           </dependency>
+         </dependencies>
+       </profile>
+     </profiles>
+    
+   <reporting> 
+    <plugins>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+
+</project>
+

Propchange: incubator/yoko/trunk/tools/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/yoko/trunk/tools/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml