treex-gate-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.czsem</groupId> <artifactId>treex-gate-plugin</artifactId> <version>3.0-alpha2</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>3.0-alpha2</version> <relativePath>../..</relativePath> </parent> <artifactId>treex-gate-plugin</artifactId> <build> <plugins> <plugin> <groupId>${project.groupId}</groupId> <artifactId>custom-properties-maven-plugin</artifactId> <version>${project.parent.version}</version> <executions> <execution> <goals> <goal>setproperties</goal> </goals> <phase>generate-resources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19</version> <configuration> <excludedGroups>slow,treexRemote,excludeByMaven</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>install-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>prepared</finalName> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/gate-plugin-dir.xml</descriptor> </descriptors> </configuration> </execution> </executions> </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> </dependencies> </project>