Author: kstam
Date: Wed Jul 11 21:45:18 2007
New Revision: 555488
URL: http://svn.apache.org/viewvc?view=rev&rev=555488
Log:
SCOUT-38 adding site info to the build
Added:
webservices/scout/trunk/scout/src/site/
webservices/scout/trunk/scout/src/site/resources/
webservices/scout/trunk/scout/src/site/resources/images/
webservices/scout/trunk/scout/src/site/resources/images/project-logo.jpg
(with props)
webservices/scout/trunk/scout/src/site/resources/images/scout.jpg (with
props)
webservices/scout/trunk/scout/src/site/site.xml (with props)
webservices/scout/trunk/scout/src/site/xdoc/
webservices/scout/trunk/scout/src/site/xdoc/releases.xml (with props)
Modified:
webservices/scout/trunk/scout/pom.xml
Modified: webservices/scout/trunk/scout/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/scout/pom.xml?view=diff&rev=555488&r1=555487&r2=555488
==============================================================================
--- webservices/scout/trunk/scout/pom.xml (original)
+++ webservices/scout/trunk/scout/pom.xml Wed Jul 11 21:45:18 2007
@@ -1,53 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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.ws.scout</groupId>
- <artifactId>scout-parent</artifactId>
- <version>SNAPSHOT</version>
- <!-- Should better be ${axiom.version} -->
- </parent>
- <artifactId>scout</artifactId>
- <name>Scout Implementation</name>
- <version>SNAPSHOT</version>
- <description>The Scout Implementation</description>
- <dependencies>
- <dependency>
- <groupId>org.apache.ws.scout</groupId>
- <artifactId>jaxr-api</artifactId>
- <version>SNAPSHOT</version>
- </dependency>
+<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.ws.scout</groupId>
+ <artifactId>scout-parent</artifactId>
+ <version>SNAPSHOT</version>
+ <!-- Should better be ${axiom.version} -->
+ </parent>
+ <artifactId>scout</artifactId>
+ <name>Scout Implementation</name>
+ <version>SNAPSHOT</version>
+ <description>
+ Apache Scout is an implementation of the JSR 93 - JavaTM API for
+ XML Registries 1.0 (JAXR)
+ </description>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ws.scout</groupId>
+ <artifactId>jaxr-api</artifactId>
+ <version>SNAPSHOT</version>
+ </dependency>
- <!-- external JARs -->
+ <!-- external JARs -->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <skip>false</skip>
- <excludes>
- <exclude>**/*Abstract*.java</exclude>
- </excludes>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <skip>false</skip>
+ <excludes>
+
<exclude>**/*Abstract*.java</exclude>
+ </excludes>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
@@ -57,22 +59,32 @@
<phase>generate-sources</phase>
<configuration>
<tasks>
- <property
name="schema.output.base.dir" value="target/schema"/>
- <property
name="schema.generated.src.dir" value="${schema.output.base.dir}/src"/>
- <property
name="compiled.classes.dir" value="target/classes"/>
+ <property
name="schema.output.base.dir"
+
value="target/schema" />
+ <property
+
name="schema.generated.src.dir"
+
value="${schema.output.base.dir}/src" />
+ <property
name="compiled.classes.dir"
+
value="target/classes" />
- <mkdir
dir="${schema.output.base.dir}"/>
- <mkdir
dir="${schema.generated.src.dir}"/>
- <mkdir
dir="${compiled.classes.dir}"/>
+ <mkdir
dir="${schema.output.base.dir}" />
+ <mkdir
+
dir="${schema.generated.src.dir}" />
+ <mkdir
dir="${compiled.classes.dir}" />
-
<echo>Generating xmlbeans from schema</echo>
- <taskdef name="xmlbean"
classname="org.apache.xmlbeans.impl.tool.XMLBean"
classpathref="maven.runtime.classpath" />
- <xmlbean
- classgendir="${compiled.classes.dir}"
- srcgendir="${schema.generated.src.dir}"
- classpathref="maven.runtime.classpath">
- <fileset dir="${basedir}/../etc/"
includes="uddi_v2.xsd,uddi_v2.xsdconfig"/>
- </xmlbean>
+ <echo>
+
Generating xmlbeans from schema
+ </echo>
+ <taskdef
name="xmlbean"
+
classname="org.apache.xmlbeans.impl.tool.XMLBean"
+
classpathref="maven.runtime.classpath" />
+ <xmlbean
+
classgendir="${compiled.classes.dir}"
+
srcgendir="${schema.generated.src.dir}"
+
classpathref="maven.runtime.classpath">
+
<fileset dir="${basedir}/../etc/"
+
includes="uddi_v2.xsd,uddi_v2.xsdconfig" />
+ </xmlbean>
</tasks>
</configuration>
<goals>
@@ -80,25 +92,53 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
-
<source>target/schema/src</source>
- </sources>
- </configuration>
- </execution>
+ <execution>
+ <id>add-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+
<source>target/schema/src</source>
+ </sources>
+ </configuration>
+ </execution>
</executions>
- </plugin>
- </plugins>
- </build>
+ </plugin>
+ </plugins>
+ </build>
+ <profiles>
+ <profile>
+ <id>release</id>
+ <activation>
+ <property>
+ <name>release</name>
+ <value></value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
Added: webservices/scout/trunk/scout/src/site/resources/images/project-logo.jpg
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/scout/src/site/resources/images/project-logo.jpg?view=auto&rev=555488
==============================================================================
Binary file - no diff available.
Propchange:
webservices/scout/trunk/scout/src/site/resources/images/project-logo.jpg
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: webservices/scout/trunk/scout/src/site/resources/images/scout.jpg
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/scout/src/site/resources/images/scout.jpg?view=auto&rev=555488
==============================================================================
Binary file - no diff available.
Propchange: webservices/scout/trunk/scout/src/site/resources/images/scout.jpg
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: webservices/scout/trunk/scout/src/site/site.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/scout/src/site/site.xml?view=auto&rev=555488
==============================================================================
--- webservices/scout/trunk/scout/src/site/site.xml (added)
+++ webservices/scout/trunk/scout/src/site/site.xml Wed Jul 11 21:45:18 2007
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ ~ 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 name="Apache Scout">
+
+ <bannerLeft>
+ <name>Apache Scout</name>
+ <src>images/project-logo.jpg</src>
+ <href>ws.apache.org/scout/</href>
+ </bannerLeft>
+ <bannerRight>
+ <src>images/scout.jpg</src>
+ </bannerRight>
+ <skin>
+ <groupId>org.apache.maven.skins</groupId>
+ <artifactId>maven-default-skin</artifactId>
+ <version>1.0</version>
+ </skin>
+
+ <publishDate format="dd MMM yyyy" position="right"/>
+
+ <body>
+ <breadcrumbs>
+ <item name="Apache" href="http://www.apache.org/"/>
+ <item name="WebServices" href="http://ws.apache.org/"/>
+ </breadcrumbs>
+
+ <menu name="Apache Scout">
+ <item name="Welcome" href="index.html"/>
+ <item name="Get Scout">
+ <item name="Releases" href="releases.html"/>
+ <item name="Source Code" href="source-repository.html"/>
+ </item>
+ <item name="Documentation">
+ <item name="Wiki" href="http://wiki.apache.org/ws/scout"/>
+ <item name="Javadocs" href="apidocs/index.html"/>
+ </item>
+ <item name="Project Information">
+ <item name="Project Information" href="project-info.html"/>
+ <item name="Mailing Lists" href="mail-lists.html"/>
+ <item name="Issue Tracking" href="issue-tracking.html"/>
+ <item name="Dependencies" href="dependencies.html"/>
+ <item name="Dependency Convergence"
href="dependency-convergence.html"/>
+ <item name="Project Team" href="team-list.html"/>
+ <item name="Project Summary" href="project-summary.html"/>
+ </item>
+ <item name="Related Projects">
+ <item name="Apache jUDDI"
href="http://ws.apache.org/juddi/" description="Apache jUDDI"/>
+ </item>
+ </menu>
+
+ </body>
+</project>
+
Propchange: webservices/scout/trunk/scout/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: webservices/scout/trunk/scout/src/site/site.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: webservices/scout/trunk/scout/src/site/xdoc/releases.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/scout/src/site/xdoc/releases.xml?view=auto&rev=555488
==============================================================================
--- webservices/scout/trunk/scout/src/site/xdoc/releases.xml (added)
+++ webservices/scout/trunk/scout/src/site/xdoc/releases.xml Wed Jul 11
21:45:18 2007
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN"
"http://forrest.apache.org/dtd/document-v12.dtd">
+<document>
+ <properties>
+ <title>Scout Releases</title>
+ </properties>
+ <body>
+ <section name="Releases">
+ <p>This contains JAXR implementation for UDDI v2.0 registries that has
been
+ tested against Apache jUDDI registry. The implementation has
been tested against
+ J2EE 1.4 Compatibility Test Suite from Sun for the JAXR tests
when integrated
+ with J2EE Application Servers (JBoss, Apache Geronimo and
Jonas).</p>
+ <table>
+ <tr>
+ <td><strong>Name</strong></td>
+ <td><strong>Date</strong></td>
+ <td><strong>Description</strong></td>
+ </tr>
+
+ <tr>
+ <td><a
href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/ws-scout/jars/scout-0.7rc2.jar">0.7rc2</a></td>
+ <td>18 Dec, 2006</td>
+ <td>Release Candidate #2 for Version 0.7.</td>
+ </tr>
+ <tr>
+ <td><a
href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/ws-scout/jars/scout-0.7rc1.jar">0.7rc1</a></td>
+ <td>21 May, 2006</td>
+ <td>Release Candidate #1 for Version 0.7.</td>
+ </tr>
+ <tr>
+ <td><a
href="http://people.apache.org/repo/m1-ibiblio-rsync-repository/ws-scout/jars/scout-0.5.jar">0.5</a></td>
+ <td>17 Feb, 2006</td>
+ <td>Version 0.5.</td>
+ </tr>
+
+ </table>
+
+ </section>
+ </body>
+</document>
Propchange: webservices/scout/trunk/scout/src/site/xdoc/releases.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: webservices/scout/trunk/scout/src/site/xdoc/releases.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]