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 2009/09/16 19:37:11 UTC

svn commit: r815903 - in /incubator/uima: uima-as/trunk/uimaj-eclipse-feature-deployeditor/ uimaj/trunk/uimaj-eclipse-feature-runtime/ uimaj/trunk/uimaj-eclipse-feature-tools/

Author: schor
Date: Wed Sep 16 17:37:11 2009
New Revision: 815903

URL: http://svn.apache.org/viewvc?rev=815903&view=rev
Log:
UIMA-1575 add poms for building Eclipse Feature plugins

Added:
    incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/pom.xml
    incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml
    incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml
Modified:
    incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/   (props changed)
    incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/feature.xml
    incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/   (props changed)
    incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/   (props changed)

Propchange: incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Sep 16 17:37:11 2009
@@ -1,2 +1,3 @@
-.project
-build.properties
+.project
+build.properties
+target

Modified: incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/feature.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/feature.xml?rev=815903&r1=815902&r2=815903&view=diff
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/feature.xml (original)
+++ incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/feature.xml Wed Sep 16 17:37:11 2009
@@ -57,8 +57,8 @@
    </url>
 
    <requires>
-      <import plugin="org.apache.uima.runtime" version="2.2.2" match="greaterOrEqual"/>
-      <import plugin="org.apache.uima.desceditor" version="2.2.2" match="greaterOrEqual"/>
+      <import plugin="org.apache.uima.runtime" version="2.3.0" match="greaterOrEqual"/>
+      <import plugin="org.apache.uima.desceditor" version="2.3.0" match="greaterOrEqual"/>
    </requires>
 
    <plugin

Added: incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/pom.xml?rev=815903&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/pom.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-eclipse-feature-deployeditor/pom.xml Wed Sep 16 17:37:11 2009
@@ -0,0 +1,44 @@
+
+  <!--
+    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>
+  <!-- groupId omitted - inherited from parent -->
+  <artifactId>uimaj-eclipse-feature-deployeditor</artifactId>
+  <packaging>jar</packaging>
+  <!-- version omitted - inherited from parent-->
+  <name>Apache UIMA Eclipse Feature: Deploy Editor</name>
+  <parent>
+    <groupId>org.apache.uima</groupId>
+    <artifactId>uimaj-eclipse-plugins</artifactId>
+    <version>2.3.0.incubating-SNAPSHOT</version> <!-- this comment is a flag for changeVersion -->
+  </parent>
+    
+  <build>
+    <finalName>org.apache.uima.as.deployeditor_${uimaj-release-eclipse-version}</finalName>
+    <resources>
+      <resource>
+        <directory>.</directory>
+        <includes>
+          <include>feature.properties</include>
+          <include>feature.xml</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+</project>
\ No newline at end of file

Propchange: incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Sep 16 17:37:11 2009
@@ -1 +1,2 @@
-META-INF
+META-INF
+target

Added: incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml?rev=815903&view=auto
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml (added)
+++ incubator/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml Wed Sep 16 17:37:11 2009
@@ -0,0 +1,44 @@
+
+  <!--
+    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>
+  <!-- groupId omitted - inherited from parent -->
+  <artifactId>uimaj-eclipse-feature-runtime</artifactId>
+  <packaging>jar</packaging>
+  <!-- version omitted - inherited from parent-->
+  <name>Apache UIMA Eclipse Feature: Runtime</name>
+  <parent>
+    <groupId>org.apache.uima</groupId>
+    <artifactId>uimaj-eclipse-plugins</artifactId>
+    <version>2.3.0.incubating-SNAPSHOT</version> <!-- this comment is a flag for changeVersion -->
+  </parent>
+    
+  <build>
+    <finalName>org.apache.uima.runtime_${uimaj-release-eclipse-version}</finalName>
+    <resources>
+      <resource>
+        <directory>.</directory>
+        <includes>
+          <include>feature.properties</include>
+          <include>feature.xml</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+</project>
\ No newline at end of file

Propchange: incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Sep 16 17:37:11 2009
@@ -1 +1,2 @@
-META-INF
+META-INF
+target

Added: incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml?rev=815903&view=auto
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml (added)
+++ incubator/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml Wed Sep 16 17:37:11 2009
@@ -0,0 +1,44 @@
+
+  <!--
+    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>
+  <!-- groupId omitted - inherited from parent -->
+  <artifactId>uimaj-eclipse-feature-tools</artifactId>
+  <packaging>jar</packaging>
+  <!-- version omitted - inherited from parent-->
+  <name>Apache UIMA Eclipse Feature: Tools</name>
+  <parent>
+    <groupId>org.apache.uima</groupId>
+    <artifactId>uimaj-eclipse-plugins</artifactId>
+    <version>2.3.0.incubating-SNAPSHOT</version> <!-- this comment is a flag for changeVersion -->
+  </parent>
+    
+  <build>
+    <finalName>org.apache.uima.tools_${uimaj-release-eclipse-version}</finalName>
+    <resources>
+      <resource>
+        <directory>.</directory>
+        <includes>
+          <include>feature.properties</include>
+          <include>feature.xml</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+</project>
\ No newline at end of file