treex-gate-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.czsem</groupId>
<artifactId>treex-gate-plugin</artifactId>
<version>4.0.3</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.czsem</groupId>
<artifactId>czsem</artifactId>
<version>4.0.3</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>treex-gate-plugin</artifactId>
<build>
<plugins>
<plugin>
<!-- set properties for old style /src/main/creole/creole.xml variable expansion -->
<groupId>${project.groupId}</groupId>
<artifactId>custom-properties-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>setproperties</goal>
</goals>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<plugin>
<!-- crete the old style gate-plugin-dir.zip -->
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<!-- crete the new style expanded creole.xml from src/main/resources/creole.xml -->
<groupId>uk.ac.gate</groupId>
<artifactId>gate-maven-plugin</artifactId>
</plugin>
<plugin>
<!-- crete the new style creole.jar for GATE GUI -->
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<excludedGroups>slow,treexRemote,excludeByMaven</excludedGroups>
<!-- Marking tests as skipped because perl is no more available on my laptop. -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>czsem-gate-plugin</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-core</artifactId>
<version>${gate.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>