You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2010/05/12 16:59:04 UTC

svn commit: r943535 - in /uima/sandbox/branches/mavenAlign/FsVariables: DISCLAIMER build_documentation.xml docbook/ docs/ pom.xml src/docbook/ src/docbook/FsVariablesUserGuide/ src/docbook/fsVariablesUserGuide.xml src/docbook/images/

Author: schor
Date: Wed May 12 14:59:04 2010
New Revision: 943535

URL: http://svn.apache.org/viewvc?rev=943535&view=rev
Log:
[UIMA-1756] package as PEAR,remove disclaimer, reformat POM to conventions, fixup docbook, remove docs/

Added:
    uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/
      - copied from r941967, uima/sandbox/branches/mavenAlign/FsVariables/docbook/
    uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/fsVariablesUserGuide.xml
      - copied, changed from r941967, uima/sandbox/branches/mavenAlign/FsVariables/docbook/FsVariablesUserGuide/fsVariablesUserGuide.xml
    uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/images/
      - copied from r941967, uima/sandbox/branches/mavenAlign/FsVariables/docbook/FsVariablesUserGuide/images/
Removed:
    uima/sandbox/branches/mavenAlign/FsVariables/DISCLAIMER
    uima/sandbox/branches/mavenAlign/FsVariables/build_documentation.xml
    uima/sandbox/branches/mavenAlign/FsVariables/docbook/
    uima/sandbox/branches/mavenAlign/FsVariables/docs/
    uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/FsVariablesUserGuide/
Modified:
    uima/sandbox/branches/mavenAlign/FsVariables/pom.xml

Modified: uima/sandbox/branches/mavenAlign/FsVariables/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/branches/mavenAlign/FsVariables/pom.xml?rev=943535&r1=943534&r2=943535&view=diff
==============================================================================
--- uima/sandbox/branches/mavenAlign/FsVariables/pom.xml (original)
+++ uima/sandbox/branches/mavenAlign/FsVariables/pom.xml Wed May 12 14:59:04 2010
@@ -21,31 +21,65 @@
 	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.uima</groupId>
-	<artifactId>FsVariables</artifactId>
-	<packaging>jar</packaging>
-	<version>2.3.0-incubating</version> <!-- this comment is a flag for changeVersion -->
-	<name>Apache UIMA FS Variables Package</name>
   
   <parent>
     <groupId>org.apache.uima</groupId>
-    <artifactId>SandboxDistr</artifactId>
-    <version>2.3.0-incubating</version> <!-- this comment is a flag for changeVersion -->
-    <relativePath>../SandboxDistr</relativePath>
+    <artifactId>parent-pom-single-project</artifactId>
+    <version>1-SNAPSHOT</version>
+    <relativePath/>
   </parent>
+  
+	<artifactId>FsVariables</artifactId>
+	<version>2.3.1-SNAPSHOT</version>
+	<name>UIMA Addon: ${project.artifactId}</name>
+  <description>Adds capability to base UIMA framework for conveniently creating and accessing named FeatureStructure instances in the CAS</description>
+  <url>http://incubator.apache.org/uima</url>
 
+  <!-- Special inheritance note
+       even though the <scm> element that follows is exactly the 
+       same as those in super poms, it cannot be inherited because 
+       there is some special code that computes the connection elements
+       from the chain of parent poms, if this is omitted. 
+       
+       Keeping this a bit factored allows cutting/pasting the <scm>
+       element, and just changing the following two properties -->  
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </developerConnection>
+    <url>
+      http://svn.apache.org/viewvc/uima/${uimaScmRoot}/trunk/${uimaScmProject}
+    </url>
+  </scm>
+  
+  <properties>
+    <uimaScmRoot>sandbox</uimaScmRoot>
+    <uimaScmProject>${project.artifactId}</uimaScmProject>
+    <uimaDependencyVersion>2.3.1-SNAPSHOT</uimaDependencyVersion>
+    <bookNameRoot>fsVariablesUserGuide</bookNameRoot>
+  </properties>
+        
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-core</artifactId>
+      <version>${uimaDependencyVersion}</version>
+      <scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-test-util</artifactId>
+      <version>${uimaDependencyVersion}</version>
+      <scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-component-test-util</artifactId>
+      <version>${uimaDependencyVersion}</version>
+      <scope>provided</scope>
 		</dependency>
 	</dependencies>
   
@@ -55,31 +89,13 @@
     <!-- add the desc dir to the default test resources -->
 		<testResources>
 			<testResource>
-				<directory>desc</directory>
+				<directory>src/asm/desc</directory>
 			</testResource>
       <testResource>
         <directory>src/test/resources</directory>
       </testResource>
  		</testResources>
     
-    <plugins>
-      <!-- Release Audit Tool checks -->
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>default-cli</id>
-            <configuration>
-              <excludes>
-                <exclude>docs/html/images/*.svg</exclude> <!-- generated image files for docbook -->
-              </excludes>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      
-    </plugins>
 	</build>
   
 </project>

Copied: uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/fsVariablesUserGuide.xml (from r941967, uima/sandbox/branches/mavenAlign/FsVariables/docbook/FsVariablesUserGuide/fsVariablesUserGuide.xml)
URL: http://svn.apache.org/viewvc/uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/fsVariablesUserGuide.xml?p2=uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/fsVariablesUserGuide.xml&p1=uima/sandbox/branches/mavenAlign/FsVariables/docbook/FsVariablesUserGuide/fsVariablesUserGuide.xml&r1=941967&r2=943535&rev=943535&view=diff
==============================================================================
--- uima/sandbox/branches/mavenAlign/FsVariables/docbook/FsVariablesUserGuide/fsVariablesUserGuide.xml (original)
+++ uima/sandbox/branches/mavenAlign/FsVariables/src/docbook/fsVariablesUserGuide.xml Wed May 12 14:59:04 2010
@@ -1,9 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY imgroot "../images/FsVariablesUserGuide/" >
-<!ENTITY % xinclude SYSTEM "../../../uima-docbook-tool/xinclude.mod">
-  %xinclude;
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
+<!ENTITY imgroot "images/FsVariablesUserGuide/" >
 ]>
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
@@ -30,7 +28,7 @@ under the License.
 	</title>
 
 	<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-		href="../../../SandboxDocs/src/docbook/book_info.xml" />
+		href="../../target/docbook-shared/common_book_info.xml" />
 
 <chapter id="sandbox.fsVariables">
   <title>Feature Structure Variables</title>