You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by fc...@apache.org on 2012/12/13 13:37:42 UTC

svn commit: r1421257 - /stanbol/trunk/commons/caslight/pom.xml

Author: fchrist
Date: Thu Dec 13 12:37:42 2012
New Revision: 1421257

URL: http://svn.apache.org/viewvc?rev=1421257&view=rev
Log:
Fixed naming of CAS light bundle, formatings

Modified:
    stanbol/trunk/commons/caslight/pom.xml

Modified: stanbol/trunk/commons/caslight/pom.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/caslight/pom.xml?rev=1421257&r1=1421256&r2=1421257&view=diff
==============================================================================
--- stanbol/trunk/commons/caslight/pom.xml (original)
+++ stanbol/trunk/commons/caslight/pom.xml Thu Dec 13 12:37:42 2012
@@ -1,174 +1,174 @@
 <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/xsd/maven-4.0.0.xsd">
-    <modelVersion>4.0.0</modelVersion>
+     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.apache.stanbol</groupId>
-        <artifactId>stanbol-parent</artifactId>
-        <version>2-SNAPSHOT</version>
-        <relativePath>../../parent</relativePath>
-    </parent>
-
-    <artifactId>org.apache.stanbol.commons.caslight</artifactId>
-    <version>0.10.0-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-
-    <name>CAS Light</name>
-
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    </properties>
-
-    <dependencies>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>2-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.commons.caslight</artifactId>
+  <version>0.10.0-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+
+  <name>Apache Stanbol Commons CAS Light</name>
+  <description>
+    This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without UIMA dependency. These are used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines.
+  </description>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.2.0</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.stanbol.commons.caslight;version=${project.version}
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.4.0</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+  <profiles>
+    <profile>
+      <id>build-for-felix</id>
+      <dependencies>
         <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <version>1.4.0</version>
-            <scope>provided</scope>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>org.apache.felix.main</artifactId>
+          <version>3.0.7</version>
+          <scope>provided</scope>
         </dependency>
-    </dependencies>
-
-    <build>
+        <!-- To include a shell:
+        <dependency>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>org.apache.felix.gogo.shell</artifactId>
+          <version>0.6.1</version>
+        </dependency>
+        -->
+      </dependencies>
+      <build>
         <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <version>2.2.0</version>
-                <extensions>true</extensions>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.6</version>
+            <executions>
+              <execution>
+                <id>compile</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <target>
+                    <pathconvert property="plugins.jars" pathsep="${path.separator}">
+                      <path refid="maven.runtime.classpath"/>
+                      <map from="${project.build.directory}${file.separator}classes" to=""/>
+                    </pathconvert>
+                    <pathconvert pathsep=" " property="bundles">
+                      <path path="${plugins.jars}"/>
+                      <mapper>
+                        <chainedmapper>
+                          <flattenmapper/>
+                          <globmapper from="*" to="file:modules/*" casesensitive="no"/>
+                        </chainedmapper>
+                      </mapper>
+                    </pathconvert>
+                    <propertyfile file="${project.build.directory}/config.properties">
+                      <entry key="felix.auto.start" value="${bundles} file:modules/${project.build.finalName}.jar"/>
+                      <entry key="org.osgi.framework.bootdelegation" value="*"/>
+                    </propertyfile>
+                    <copy file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}" tofile="${project.build.directory}/felix.jar"/>
+                  </target>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2</version>
+            <executions>
+              <execution>
+                <id>create-executable-jar</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
                 <configuration>
-                    <instructions>
-                        <Export-Package>
-                            org.apache.stanbol.commons.caslight;version=${project.version}
-                        </Export-Package>
-                    </instructions>
+                  <descriptors>
+                    <descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
+                  </descriptors>
+                  <finalName>${project.build.finalName}</finalName>
                 </configuration>
-            </plugin>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
-    </build>
-
-    <profiles>
-        <profile>
-            <id>build-for-felix</id>
-            <dependencies>
-                <dependency>
-                    <groupId>org.apache.felix</groupId>
-                    <artifactId>org.apache.felix.main</artifactId>
-                    <version>3.0.7</version>
-                    <scope>provided</scope>
-                </dependency>
-                <!-- To include a shell:
-                <dependency>
-                    <groupId>org.apache.felix</groupId>
-                    <artifactId>org.apache.felix.gogo.shell</artifactId>
-                    <version>0.6.1</version>
-                </dependency>
-                -->
-            </dependencies>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-antrun-plugin</artifactId>
-                        <version>1.6</version>
-                        <executions>
-                            <execution>
-                                <id>compile</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>run</goal>
-                                </goals>
-                                <configuration>
-                                    <target>
-                                        <pathconvert property="plugins.jars" pathsep="${path.separator}">
-                                            <path refid="maven.runtime.classpath"/>
-                                            <map from="${project.build.directory}${file.separator}classes" to=""/>
-                                        </pathconvert>
-                                        <pathconvert pathsep=" " property="bundles">
-                                            <path path="${plugins.jars}"/>
-                                            <mapper>
-                                                <chainedmapper>
-                                                    <flattenmapper/>
-                                                    <globmapper from="*" to="file:modules/*" casesensitive="no"/>
-                                                </chainedmapper>
-                                            </mapper>
-                                        </pathconvert>
-                                        <propertyfile file="${project.build.directory}/config.properties">
-                                            <entry key="felix.auto.start" value="${bundles} file:modules/${project.build.finalName}.jar"/>
-                                            <entry key="org.osgi.framework.bootdelegation" value="*"/>
-                                        </propertyfile>
-                                        <copy file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}" tofile="${project.build.directory}/felix.jar"/>
-                                    </target>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-assembly-plugin</artifactId>
-                        <version>2.2</version>
-                        <executions>
-                            <execution>
-                                <id>create-executable-jar</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>single</goal>
-                                </goals>
-                                <configuration>
-                                    <descriptors>
-                                        <descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
-                                    </descriptors>
-                                    <finalName>${project.build.finalName}</finalName>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-        <profile>
-            <id>run-on-felix</id>
-            <dependencies>
-                <dependency>
-                    <groupId>org.apache.felix</groupId>
-                    <artifactId>org.apache.felix.main</artifactId>
-                    <version>3.0.7</version>
-                    <scope>provided</scope>
-                </dependency>
-                <!-- org.apache.felix:org.apache.felix.gogo.shell:0.6.1 useless from Maven since stdin is swallowed -->
-            </dependencies>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-antrun-plugin</artifactId>
-                        <version>1.6</version>
-                        <configuration>
-                            <target>
-                                <property name="vm.args" value=""/>
-                                <pathconvert property="plugins.jars" pathsep="${path.separator}">
-                                    <path refid="maven.runtime.classpath"/>
-                                    <map from="${project.build.directory}${file.separator}classes" to=""/>
-                                </pathconvert>
-                                <makeurl property="urls" separator=" ">
-                                    <path path="${plugins.jars}"/>
-                                    <path location="${project.build.directory}/${project.build.finalName}.jar"/>
-                                </makeurl>
-                                <propertyfile file="${project.build.directory}/run.properties">
-                                    <entry key="felix.auto.start" value="${urls}"/>
-                                    <entry key="felix.auto.deploy.action" value="uninstall,install,update,start"/>
-                                    <entry key="org.osgi.framework.storage" value="${project.build.directory}${file.separator}felix-cache"/>
-                                    <entry key="org.osgi.framework.bootdelegation" value="*"/>
-                                </propertyfile>
-                                <makeurl property="run.properties.url" file="${project.build.directory}/run.properties"/>
-                                <java fork="true" jar="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}">
-                                    <sysproperty key="felix.config.properties" value="${run.properties.url}"/>
-                                    <jvmarg line="${vm.args}"/>
-                                </java>
-                            </target>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+      </build>
+    </profile>
+    <profile>
+      <id>run-on-felix</id>
+      <dependencies>
+        <dependency>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>org.apache.felix.main</artifactId>
+          <version>3.0.7</version>
+          <scope>provided</scope>
+        </dependency>
+        <!-- org.apache.felix:org.apache.felix.gogo.shell:0.6.1 useless from Maven since stdin is swallowed -->
+      </dependencies>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.6</version>
+            <configuration>
+              <target>
+                <property name="vm.args" value=""/>
+                <pathconvert property="plugins.jars" pathsep="${path.separator}">
+                  <path refid="maven.runtime.classpath"/>
+                  <map from="${project.build.directory}${file.separator}classes" to=""/>
+                </pathconvert>
+                <makeurl property="urls" separator=" ">
+                  <path path="${plugins.jars}"/>
+                  <path location="${project.build.directory}/${project.build.finalName}.jar"/>
+                </makeurl>
+                <propertyfile file="${project.build.directory}/run.properties">
+                  <entry key="felix.auto.start" value="${urls}"/>
+                  <entry key="felix.auto.deploy.action" value="uninstall,install,update,start"/>
+                  <entry key="org.osgi.framework.storage" value="${project.build.directory}${file.separator}felix-cache"/>
+                  <entry key="org.osgi.framework.bootdelegation" value="*"/>
+                </propertyfile>
+                <makeurl property="run.properties.url" file="${project.build.directory}/run.properties"/>
+                <java fork="true" jar="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}">
+                  <sysproperty key="felix.config.properties" value="${run.properties.url}"/>
+                  <jvmarg line="${vm.args}"/>
+                </java>
+              </target>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>