czsem-gate-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.czsem</groupId> <artifactId>czsem-gate-plugin</artifactId> <version>3.0.2</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.2</version> <relativePath>../..</relativePath> </parent> <artifactId>czsem-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-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-common</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>uk.ac.gate</groupId> <artifactId>gate-core</artifactId> <version>8.4.1</version> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-core</artifactId> <version>1.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.10</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.12</version> </dependency> </dependencies> </project>