Author: sagara
Date: Mon Jan 27 17:35:53 2014
New Revision: 1561761
URL: http://svn.apache.org/r1561761
Log:
Added woden-dist module
Added:
webservices/woden/trunk/java/woden-dist/
webservices/woden/trunk/java/woden-dist/pom.xml
webservices/woden/trunk/java/woden-dist/src/
webservices/woden/trunk/java/woden-dist/src/main/
webservices/woden/trunk/java/woden-dist/src/main/assembly/
webservices/woden/trunk/java/woden-dist/src/main/assembly/dom.xml
webservices/woden/trunk/java/woden-dist/src/main/assembly/src.xml
Modified:
webservices/woden/trunk/java/pom.xml
Modified: webservices/woden/trunk/java/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/woden/trunk/java/pom.xml?rev=1561761&r1=1561760&r2=1561761&view=diff
==============================================================================
--- webservices/woden/trunk/java/pom.xml (original)
+++ webservices/woden/trunk/java/pom.xml Mon Jan 27 17:35:53 2014
@@ -204,6 +204,7 @@
<module>woden-tool</module>
<module>woden-converter-maven-plugin</module>
<module>woden-ant</module>
+ <module>woden-dist</module>
</modules>
<build>
<plugins>
@@ -213,6 +214,23 @@
<version>1.1</version>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.6.1</version>
+ <configuration>
+
<excludePackageNames>org.apache.woden.internal</excludePackageNames>
+ </configuration>
+ <executions>
+ <execution>
+ <id>aggregate</id>
+ <goals>
+ <goal>aggregate</goal>
+ </goals>
+ <phase>package</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
Added: webservices/woden/trunk/java/woden-dist/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-dist/pom.xml?rev=1561761&view=auto
==============================================================================
--- webservices/woden/trunk/java/woden-dist/pom.xml (added)
+++ webservices/woden/trunk/java/woden-dist/pom.xml Mon Jan 27 17:35:53 2014
@@ -0,0 +1,91 @@
+<?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-dist</artifactId>
+ <name>Woden - dist</name>
+ <packaging>pom</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>distribution-package</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <finalName>woden-${project.version}</finalName>
+ <descriptors>
+
<descriptor>src/main/assembly/dom.xml</descriptor>
+
<descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.woden</groupId>
+ <artifactId>woden-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.woden</groupId>
+ <artifactId>woden-tool</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.woden</groupId>
+ <artifactId>woden-ant</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-launcher</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ws.xmlschema</groupId>
+ <artifactId>xmlschema-core</artifactId>
+ <version>${apache.xmlSchema.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>${commons.logging.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ <version>${wsdl4j.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Added: webservices/woden/trunk/java/woden-dist/src/main/assembly/dom.xml
URL:
http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-dist/src/main/assembly/dom.xml?rev=1561761&view=auto
==============================================================================
--- webservices/woden/trunk/java/woden-dist/src/main/assembly/dom.xml (added)
+++ webservices/woden/trunk/java/woden-dist/src/main/assembly/dom.xml Mon Jan
27 17:35:53 2014
@@ -0,0 +1,76 @@
+<!-- ~ 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. -->
+<assembly>
+ <id>dom</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <baseDirectory>woden-dom-${version}</baseDirectory>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ <format>tar.bz2</format>
+ </formats>
+ <includeSiteDirectory>false</includeSiteDirectory>
+
+ <fileSets>
+ <fileSet>
+ <directory>../legal</directory>
+ <outputDirectory>lib</outputDirectory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>../target/site</directory>
+ <outputDirectory>docs</outputDirectory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ <files>
+ <file>
+ <source>../README</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../NOTICE</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../LICENSE</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../release-notes.html</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ </files>
+
+ <!-- copy 3rd party dependencies -->
+ <dependencySets>
+ <dependencySet>
+ <useProjectArtifact>false</useProjectArtifact>
+ <outputDirectory>lib</outputDirectory>
+ <includes>
+ <include>*:*:jar</include>
+ </includes>
+ </dependencySet>
+ </dependencySets>
+</assembly>
Added: webservices/woden/trunk/java/woden-dist/src/main/assembly/src.xml
URL:
http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-dist/src/main/assembly/src.xml?rev=1561761&view=auto
==============================================================================
--- webservices/woden/trunk/java/woden-dist/src/main/assembly/src.xml (added)
+++ webservices/woden/trunk/java/woden-dist/src/main/assembly/src.xml Mon Jan
27 17:35:53 2014
@@ -0,0 +1,86 @@
+<!-- ~ 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. -->
+<assembly>
+ <id>src</id>
+ <includeBaseDirectory>true</includeBaseDirectory>
+ <baseDirectory>woden-${version}</baseDirectory>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ <format>tar.bz2</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>../</directory>
+ <outputDirectory></outputDirectory>
+ <useDefaultExcludes>true</useDefaultExcludes>
+ <includes>
+ <include>pom.xml</include>
+ <include>etc/**</include>
+ <include>legal/**</include>
+ <include>resources/**</include>
+ <include>src/**</include>
+ <include>woden-ant/**</include>
+ <include>woden-core/**</include>
+ <include>woden-converter-maven-plugin/**</include>
+ <include>woden-tests/**</include>
+ <include>woden-tool/**</include>
+ <include>src/**</include>
+ </includes>
+ <excludes>
+ <exclude>*.ipr</exclude>
+ <exclude>*.iws</exclude>
+ <exclude>*.iml</exclude>
+ <exclude>*.classpath</exclude>
+ <exclude>apache-boilerplate.txt</exclude>
+ <exclude>build.properties</exclude>
+ <exclude>build.xml</exclude>
+ <exclude>KEYS</exclude>
+ <exclude>woden-eclipse-formatter-conventions.xml
+ </exclude>
+ <exclude>woden-1.0.0M6-test-results.html</exclude>
+ <exclude>**/target</exclude>
+ <exclude>**/target/**</exclude>
+ <exclude>**/target/**/*</exclude>
+ <exclude>woden-ant/downloads/**</exclude>
+ <exclude>woden-ant/src/test/resources/w3c/**</exclude>
+ <exclude>resources/**</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+ <files>
+ <file>
+ <source>../README</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../NOTICE</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../LICENSE</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ <file>
+ <source>../release-notes.html</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ <fileMode>0644</fileMode>
+ </file>
+ </files>
+</assembly>