Thilo Goetz wrote:
> [email protected] wrote:
>
>> Author: schor
>> Date: Mon Aug 24 15:07:55 2009
>> New Revision: 807273
>>
>> URL: http://svn.apache.org/viewvc?rev=807273&view=rev
>> Log:
>> [UIMA-1501]
>>
>> Modified:
>> incubator/uima/sandbox/trunk/Tagger/pom.xml
>>
>> Modified: incubator/uima/sandbox/trunk/Tagger/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Tagger/pom.xml?rev=807273&r1=807272&r2=807273&view=diff
>> ==============================================================================
>> --- incubator/uima/sandbox/trunk/Tagger/pom.xml (original)
>> +++ incubator/uima/sandbox/trunk/Tagger/pom.xml Mon Aug 24 15:07:55 2009
>> @@ -24,201 +24,76 @@
>> <groupId>org.apache.uima</groupId>
>> <artifactId>Tagger</artifactId>
>> <packaging>jar</packaging>
>> - <version>2.3.0-incubating-SNAPSHOT</version>
>> + <version>2.3.0-incubating-SNAPSHOT</version> <!-- this comment is a
>> flag for changeVersion -->
>> <name>Apache UIMA Sandbox -- HMM Tagger</name>
>> - <url>http://incubator.apache.org/uima</url>
>> +
>> + <parent>
>> + <groupId>org.apache.uima</groupId>
>> + <artifactId>SandboxDistr</artifactId>
>> + <version>2.3.0-incubating-SNAPSHOT</version> <!-- this comment is a
>> flag for changeVersion -->
>> + <relativePath>../uimaj</relativePath>
>>
>
> Wrong path here too?
>
Right ... is it one free beer per instance? Thanks! will fix this
too.. -Marshall
>
>> + </parent>
>> +
>> <dependencies>
>> <dependency>
>> <groupId>org.apache.uima</groupId>
>> <artifactId>uimaj-core</artifactId>
>> - <version>2.3.0-incubating-SNAPSHOT</version>
>> - <scope>compile</scope>
>> </dependency>
>> <dependency>
>> <groupId>org.apache.uima</groupId>
>> <artifactId>uimaj-test-util</artifactId>
>> - <version>2.3.0-incubating-SNAPSHOT</version>
>> - <scope>compile</scope>
>> </dependency>
>> <dependency>
>> <groupId>org.apache.uima</groupId>
>> <artifactId>uimaj-component-test-util</artifactId>
>> - <version>2.3.0-incubating-SNAPSHOT</version>
>> - <scope>compile</scope>
>> </dependency>
>> +
>> <dependency>
>> <groupId>org.apache.uima</groupId>
>> <artifactId>WhitespaceTokenizer</artifactId>
>> <version>2.3.0-incubating-SNAPSHOT</version>
>> - <scope>compile</scope>
>> + <scope>test</scope>
>> </dependency>
>> - <dependency>
>> - <groupId>org.apache.uima</groupId>
>> - <artifactId>PearPackagingMavenPlugin</artifactId>
>> - <version>2.3.0-incubating-SNAPSHOT</version>
>> - <scope>provided</scope>
>> - </dependency>
>> -
>> </dependencies>
>> - <build>
>> - <finalName>uima-an-tagger</finalName>
>> - <resources>
>> - <resource>
>> - <directory>desc</directory>
>> - </resource>
>> - <resource>
>> - <directory>resources</directory>
>> - </resource>
>> - </resources>
>> -
>> - <plugins>
>> - <plugin>
>> - <groupId>org.apache.maven.plugins</groupId>
>> - <artifactId>maven-compiler-plugin</artifactId>
>> - <configuration>
>> - <source>1.5</source>
>> - <target>1.5</target>
>> - </configuration>
>> - </plugin>
>> - <plugin>
>> - <groupId>org.apache.maven.plugins</groupId>
>> - <artifactId>maven-surefire-plugin</artifactId>
>> - <configuration>
>> - <argLine>-Xmx500M</argLine>
>> - </configuration>
>> - </plugin>
>> - <plugin>
>> - <groupId>org.codehaus.mojo</groupId>
>> - <artifactId>buildnumber-maven-plugin</artifactId>
>> - <executions>
>> - <execution>
>> - <phase>process-classes</phase>
>> - <goals>
>> - <goal>create</goal>
>> - </goals>
>> - </execution>
>> - </executions>
>> - <configuration>
>> - <format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
>> - <items>
>> - <item>timestamp</item>
>> - </items>
>> - </configuration>
>> - </plugin>
>> -
>> - <plugin>
>> - <artifactId>maven-antrun-plugin</artifactId>
>> - <executions>
>> - <execution>
>> -
>> <id>CopyLicenseNoticeDisclaimer</id>
>> - <phase>process-resources</phase>
>> - <configuration>
>> - <tasks>
>>
>> - <copy
>> todir="src/main/resources/META-INF">
>> - <fileset dir="."
>> includes="LICENSE NOTICE DISCLAIMER"/>
>> - </copy>
>> - <copy
>> todir="target/classes/META-INF">
>> - <fileset dir="."
>> includes="LICENSE.txt NOTICE.txt DISCLAIMER"/>
>> - </copy>
>> - </tasks>
>> - </configuration>
>> - <goals>
>> - <goal>run</goal>
>> - </goals>
>> - </execution>
>> - <!-- after compilation has been done
>> and the files have been copied to the
>> - target directory, delete them
>> from the source directory. -->
>> - <execution>
>> -
>> <id>DeleteLicenseNoticeDisclaimer</id>
>> - <phase>package</phase>
>> - <configuration>
>> - <tasks>
>> - <delete
>> dir="src/main/resources/META-INF" deleteOnExit="true" quiet="true"
>> failOnError="false">
>> -
>> <fileset dir="src/main/resources/META-INF"
>> -
>> includes="LICENSE NOTICE DISCLAIMER"/>
>> - </delete>
>> - </tasks>
>> - </configuration>
>> - <goals>
>> - <goal>run</goal>
>> - </goals>
>> - </execution>
>> - <!-- also delete on clean. -->
>> - <execution>
>> -
>> <id>CleanLicenseNoticeDisclaimer</id>
>> - <phase>clean</phase>
>> - <configuration>
>> - <tasks>
>> - <delete
>> dir="src/main/resources/META-INF" deleteOnExit="true" quiet="true"
>> failOnError="false">
>> -
>> <fileset dir="src/main/resources/META-INF"
>> -
>> includes="LICENSE NOTICE DISCLAIMER"/>
>> - </delete>
>> - </tasks>
>> - </configuration>
>> - <goals>
>> - <goal>run</goal>
>> - </goals>
>> - </execution>
>>
>> - <execution>
>> - <phase>package</phase>
>> - <configuration>
>> - <tasks>
>> - <!-- Build
>> documentation -->
>> - <ant
>> antfile="build_documentation.xml" target="copyDocs"/>
>> - </tasks>
>> - </configuration>
>> - <goals>
>> - <goal>run</goal>
>> - </goals>
>> - </execution>
>> - </executions>
>> - </plugin>
>> -
>> - <plugin>
>> - <groupId>org.apache.maven.plugins</groupId>
>> - <artifactId>maven-jar-plugin</artifactId>
>> - <configuration>
>> - <archive>
>> - <manifestEntries>
>> - <Project-Title>Apache UIMA</Project-Title>
>> -
>> <Implementation-Title>${pom.name}</Implementation-Title>
>> -
>> <Implementation-Version>${pom.version}</Implementation-Version>
>> - <Implementation-Vendor>Apache Software
>> Foundation</Implementation-Vendor>
>> -
>> <Implementation-Url>${pom.url}</Implementation-Url>
>> -
>> <Implementation-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Implementation-License>
>> - <Build-Date>${buildNumber}</Build-Date>
>> - </manifestEntries>
>> - </archive>
>> - </configuration>
>> - </plugin>
>> -
>> - <plugin>
>> - <groupId>org.apache.uima</groupId>
>> - <artifactId>PearPackagingMavenPlugin</artifactId>
>> - <extensions>true</extensions>
>> - <executions>
>> - <execution>
>> - <phase>package</phase>
>> - <configuration>
>> -
>> <classpath>$main_root/resources;$main_root/desc</classpath>
>> -
>> <mainComponentDesc>desc/HmmTagger.xml</mainComponentDesc>
>> - <componentId>HmmPosTagger</componentId>
>> - </configuration>
>> - <goals>
>> - <goal>package</goal>
>> - </goals>
>> - </execution>
>> - </executions>
>> - </plugin>
>> - </plugins>
>> - </build>
>> - <repositories>
>> - <repository>
>> - <id>ApacheIncubatorRepository</id>
>> - <url>
>> -
>> http://people.apache.org/repo/m2-incubating-repository/
>> - </url>
>> - </repository>
>> - </repositories>
>> -</project>
>> + <build>
>> + <finalName>uima-an-tagger</finalName>
>> + <resources>
>> + <resource>
>> + <directory>resources</directory>
>> + </resource>
>> + </resources>
>> + <testResources>
>> + <testResource>
>> + <directory>desc</directory>
>> + </testResource>
>> + </testResources>
>> + <plugins>
>> + <plugin>
>> + <groupId>org.apache.maven.plugins</groupId>
>> + <artifactId>maven-surefire-plugin</artifactId>
>> + <configuration>
>> + <argLine>-Xmx500M</argLine>
>> + </configuration>
>> + </plugin>
>> + <plugin>
>> + <groupId>org.apache.uima</groupId>
>> + <artifactId>PearPackagingMavenPlugin</artifactId>
>> + <extensions>true</extensions>
>> + <executions>
>> + <execution>
>> + <phase>package</phase>
>> + <configuration>
>> + <classpath>$main_root/resources;$main_root/desc</classpath>
>> + <mainComponentDesc>desc/HmmTagger.xml</mainComponentDesc>
>> + <componentId>HmmPosTagger</componentId>
>> + </configuration>
>> + <goals>
>> + <goal>package</goal>
>> + </goals>
>> + </execution>
>> + </executions>
>> + </plugin>
>> + </plugins>
>> + </build>
>> + </project>
>>
>>
>>
>
>
>
>