You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2007/08/24 19:49:29 UTC

svn commit: r569466 - in /geronimo/server/branches/2.0: assemblies/geronimo-jetty6-jee5/ assemblies/geronimo-jetty6-jee5/src/main/assembly/ assemblies/geronimo-jetty6-jee5/src/main/resources/bin/ assemblies/geronimo-tomcat6-jee5/ assemblies/geronimo-to...

Author: gawor
Date: Fri Aug 24 10:49:28 2007
New Revision: 569466

URL: http://svn.apache.org/viewvc?rev=569466&view=rev
Log:
expose command line client for jaxws-tools

Added:
    geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/
      - copied from r569454, geronimo/server/trunk/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/
    geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/jaxws-tools.bat
      - copied unchanged from r569454, geronimo/server/trunk/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/jaxws-tools.bat
    geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/jaxws-tools.sh
      - copied unchanged from r569454, geronimo/server/trunk/assemblies/geronimo-jetty6-jee5/src/main/resources/bin/jaxws-tools.sh
    geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/
      - copied from r569454, geronimo/server/trunk/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/
    geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/jaxws-tools.bat
      - copied unchanged from r569454, geronimo/server/trunk/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/jaxws-tools.bat
    geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/jaxws-tools.sh
      - copied unchanged from r569454, geronimo/server/trunk/assemblies/geronimo-tomcat6-jee5/src/main/resources/bin/jaxws-tools.sh
Modified:
    geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/pom.xml
    geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/assembly/bin.xml
    geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/pom.xml
    geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/assembly/bin.xml
    geronimo/server/branches/2.0/configs/jaxws-deployer/pom.xml

Modified: geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/pom.xml?rev=569466&r1=569465&r2=569466&view=diff
==============================================================================
--- geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/pom.xml (original)
+++ geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/pom.xml Fri Aug 24 10:49:28 2007
@@ -490,6 +490,25 @@
                             <outputDirectory>${project.build.directory}/scratch/schema</outputDirectory>
                         </configuration>
                     </execution>
+
+                    <execution>
+                        <id>install-lib</id>
+                        <phase>compile</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.apache.geronimo.modules</groupId>
+                                    <artifactId>geronimo-jaxws-builder</artifactId>
+                                    <version>${version}</version>
+                                </artifactItem>
+                            </artifactItems>
+                            <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
+                        </configuration>
+                    </execution>
+
                 </executions>
             </plugin>
 

Modified: geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/assembly/bin.xml?rev=569466&r1=569465&r2=569466&view=diff
==============================================================================
--- geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/assembly/bin.xml (original)
+++ geronimo/server/branches/2.0/assemblies/geronimo-jetty6-jee5/src/main/assembly/bin.xml Fri Aug 24 10:49:28 2007
@@ -99,6 +99,15 @@
                 <include>org.apache.geronimo.configs:upgrade-cli</include>
             </includes>
         </dependencySet>
+
+        <dependencySet>
+            <outputDirectory>bin</outputDirectory>
+            <outputFileNameMapping>jaxws-tools.jar</outputFileNameMapping>
+            <includes>
+                <include>org.apache.geronimo.configs:jaxws-deployer</include>
+            </includes>
+        </dependencySet>
+
     </dependencySets>
 
     <fileSets>
@@ -164,6 +173,34 @@
             <includes>
                 <include>var/config/config.xml</include>
             </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>target/classes/lib</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>src/main/resources/bin</directory>
+            <outputDirectory>bin</outputDirectory>
+            <includes>
+                <include>*.sh</include>
+            </includes>
+            <lineEnding>unix</lineEnding>
+            <fileMode>0755</fileMode>
+        </fileSet>
+        
+        <fileSet>
+            <directory>src/main/resources/bin</directory>
+            <outputDirectory>bin</outputDirectory>
+            <includes>
+                <include>*.bat</include>
+                <include>*.txt</include>
+            </includes>
+            <lineEnding>dos</lineEnding>
         </fileSet>
     </fileSets>
 

Modified: geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/pom.xml?rev=569466&r1=569465&r2=569466&view=diff
==============================================================================
--- geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/pom.xml (original)
+++ geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/pom.xml Fri Aug 24 10:49:28 2007
@@ -472,6 +472,25 @@
                             <outputDirectory>${project.build.directory}/scratch/schema</outputDirectory>
                         </configuration>
                     </execution>
+
+                    <execution>
+                        <id>install-lib</id>
+                        <phase>compile</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.apache.geronimo.modules</groupId>
+                                    <artifactId>geronimo-jaxws-builder</artifactId>
+                                    <version>${version}</version>
+                                </artifactItem>
+                            </artifactItems>
+                            <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
+                        </configuration>
+                    </execution>
+
                 </executions>
             </plugin>
 

Modified: geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/assembly/bin.xml?rev=569466&r1=569465&r2=569466&view=diff
==============================================================================
--- geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/assembly/bin.xml (original)
+++ geronimo/server/branches/2.0/assemblies/geronimo-tomcat6-jee5/src/main/assembly/bin.xml Fri Aug 24 10:49:28 2007
@@ -99,6 +99,15 @@
                 <include>org.apache.geronimo.configs:upgrade-cli</include>
             </includes>
         </dependencySet>
+
+        <dependencySet>
+            <outputDirectory>bin</outputDirectory>
+            <outputFileNameMapping>jaxws-tools.jar</outputFileNameMapping>
+            <includes>
+                <include>org.apache.geronimo.configs:jaxws-deployer</include>
+            </includes>
+        </dependencySet>
+
     </dependencySets>
 
     <fileSets>
@@ -164,6 +173,34 @@
             <includes>
                 <include>var/config/config.xml</include>
             </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>target/classes/lib</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>src/main/resources/bin</directory>
+            <outputDirectory>bin</outputDirectory>
+            <includes>
+                <include>*.sh</include>
+            </includes>
+            <lineEnding>unix</lineEnding>
+            <fileMode>0755</fileMode>
+        </fileSet>
+        
+        <fileSet>
+            <directory>src/main/resources/bin</directory>
+            <outputDirectory>bin</outputDirectory>
+            <includes>
+                <include>*.bat</include>
+                <include>*.txt</include>
+            </includes>
+            <lineEnding>dos</lineEnding>
         </fileSet>
     </fileSets>
 

Modified: geronimo/server/branches/2.0/configs/jaxws-deployer/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/configs/jaxws-deployer/pom.xml?rev=569466&r1=569465&r2=569466&view=diff
==============================================================================
--- geronimo/server/branches/2.0/configs/jaxws-deployer/pom.xml (original)
+++ geronimo/server/branches/2.0/configs/jaxws-deployer/pom.xml Fri Aug 24 10:49:28 2007
@@ -70,4 +70,53 @@
         
     </dependencies>
     
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.geronimo.plugins</groupId>
+                <artifactId>car-maven-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestEntries>
+                            <Endorsed-Dirs>lib/endorsed</Endorsed-Dirs>
+                            <Extension-Dirs>lib/ext</Extension-Dirs>
+                        </manifestEntries>
+                        <manifest>
+                            <mainClass>org.apache.geronimo.jaxws.builder.JAXWSToolsCLI</mainClass>
+                        </manifest>
+                    </archive>
+                    
+                    <!--
+                    NOTE: This list of dependencies is non-transitive.
+                    -->
+                    <classpath>
+                        <element>
+                            <groupId>org.apache.geronimo.modules</groupId>
+                            <artifactId>geronimo-kernel</artifactId>
+                            <version>${version}</version>
+                        </element>
+                        <element>
+                            <groupId>org.apache.geronimo.modules</groupId>
+                            <artifactId>geronimo-jaxws-builder</artifactId>
+                            <version>${version}</version>
+                        </element>
+                        <element>
+                            <groupId>commons-logging</groupId>
+                            <artifactId>commons-logging</artifactId>
+                        </element>
+                        <element>
+                            <groupId>cglib</groupId>
+                            <artifactId>cglib-nodep</artifactId>
+                        </element>
+                        <element>
+                            <groupId>log4j</groupId>
+                            <artifactId>log4j</artifactId>
+                        </element>
+                    </classpath>
+                    <classpathPrefix>../lib</classpathPrefix>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>