You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by di...@apache.org on 2008/04/08 15:58:18 UTC

svn commit: r645927 - in /webservices/commons/trunk/modules/neethi: pom.xml src/main/assembly/bin.xml src/main/assembly/src.xml src/site/site.xml

Author: dims
Date: Tue Apr  8 06:58:15 2008
New Revision: 645927

URL: http://svn.apache.org/viewvc?rev=645927&view=rev
Log:
prep neethi bin/src dist

Modified:
    webservices/commons/trunk/modules/neethi/pom.xml
    webservices/commons/trunk/modules/neethi/src/main/assembly/bin.xml
    webservices/commons/trunk/modules/neethi/src/main/assembly/src.xml
    webservices/commons/trunk/modules/neethi/src/site/site.xml

Modified: webservices/commons/trunk/modules/neethi/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/pom.xml?rev=645927&r1=645926&r2=645927&view=diff
==============================================================================
--- webservices/commons/trunk/modules/neethi/pom.xml (original)
+++ webservices/commons/trunk/modules/neethi/pom.xml Tue Apr  8 06:58:15 2008
@@ -24,7 +24,7 @@
 	<artifactId>neethi</artifactId>
 	<name>Neethi</name>
 	<version>SNAPSHOT</version>
-	<description>Neethi API</description>
+	<description>Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities.</description>
 	<url>http://ws.apache.org/commons/neethi/</url>
 	<issueManagement>
 		<url>http://issues.apache.org/jira/browse/WSCOMMONS</url>
@@ -60,7 +60,7 @@
 		<developer>
 			<name>Davanum Srinivas</name>
 			<id>dims</id>
-			<organization>WSO2 Inc.</organization>
+			<organization>IBM</organization>
 			<email>dims@yahoo.com</email>
 		</developer>
 		<developer>
@@ -100,21 +100,21 @@
 		<url>http://www.apache.org/</url>
 	</organization>
 	<build>
-        <resources>
-          <resource>
-             <directory>src/main/resources</directory>
-           </resource>
-        </resources>
+        <resources>
+          <resource>
+             <directory>src/main/resources</directory>
+           </resource>
+        </resources>
 		<plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <configuration>
-                    <archive>
-                        <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
-                    </archive>
-                </configuration>
-            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
+            </plugin>
 			<plugin>
 				<artifactId>maven-compiler-plugin</artifactId>
 				<configuration>
@@ -182,7 +182,7 @@
 						<executions>
 							<execution>
 								<goals>
-									<goal>jar</goal>
+									<goal>javadoc</goal>
 								</goals>
 							</execution>
 						</executions>
@@ -290,16 +290,6 @@
 			</plugin>
 			<plugin>
 				<artifactId>maven-project-info-reports-plugin</artifactId>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>jdepend-maven-plugin</artifactId>
-				<version>2.0-beta-1</version>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>jxr-maven-plugin</artifactId>
-				<version>2.0-beta-2-SNAPSHOT</version>
 			</plugin>
 		</plugins>
 	</reporting>

Modified: webservices/commons/trunk/modules/neethi/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/src/main/assembly/bin.xml?rev=645927&r1=645926&r2=645927&view=diff
==============================================================================
--- webservices/commons/trunk/modules/neethi/src/main/assembly/bin.xml (original)
+++ webservices/commons/trunk/modules/neethi/src/main/assembly/bin.xml Tue Apr  8 06:58:15 2008
@@ -20,10 +20,20 @@
 <assembly>
   <id>bin</id>
   <formats>
-    <format>tar.gz</format>
+    <format>zip</format>
   </formats>
-  <includeSiteDirectory>true</includeSiteDirectory>
+  <includeSiteDirectory>false</includeSiteDirectory>
   <fileSets>
+		<fileSet>
+			<directory>target/site</directory>
+			<outputDirectory>docs</outputDirectory>
+			<includes>
+				<include>**/*</include>
+			</includes>
+			<excludes>
+				<exclude>testapidocs/**/*</exclude>
+			</excludes>
+		</fileSet>
     <fileSet>
       <includes>
 		<include>*.txt</include>

Modified: webservices/commons/trunk/modules/neethi/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/src/main/assembly/src.xml?rev=645927&r1=645926&r2=645927&view=diff
==============================================================================
--- webservices/commons/trunk/modules/neethi/src/main/assembly/src.xml (original)
+++ webservices/commons/trunk/modules/neethi/src/main/assembly/src.xml Tue Apr  8 06:58:15 2008
@@ -20,7 +20,7 @@
 <assembly>
   <id>src</id>
   <formats>
-    <format>tar.gz</format>
+    <format>zip</format>
   </formats>
   <fileSets>
     <fileSet>

Modified: webservices/commons/trunk/modules/neethi/src/site/site.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/src/site/site.xml?rev=645927&r1=645926&r2=645927&view=diff
==============================================================================
--- webservices/commons/trunk/modules/neethi/src/site/site.xml (original)
+++ webservices/commons/trunk/modules/neethi/src/site/site.xml Tue Apr  8 06:58:15 2008
@@ -39,5 +39,8 @@
         <item name="Javadocs" href="/apidocs/index.html"/>
       </item>
     </menu>
+    
+    <menu ref="reports"/>
+    
   </body>
 </project>



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