release
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.erasmusmc.data-mining</groupId>
<artifactId>release</artifactId>
<version>1.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.erasmusmc.data-mining</groupId> <artifactId>release</artifactId> <packaging>pom</packaging> <version>1.3</version> <name>Data Mining All-in-One Bundle</name> <inceptionYear>2009</inceptionYear> <organization> <name>ErasmusMC</name> <url>http://www.erasmusmc.nl/</url> </organization> <parent> <groupId>org.erasmusmc.data-mining</groupId> <artifactId>data-mining</artifactId> <version>1.3</version> </parent> <!-- This module only produces something at release stage: --> <profiles> <profile> <id>release-profile</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assemble</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>assembly-zip.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.erasmusmc.data-mining.ontology</groupId> <artifactId>ontology-impl-file</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.erasmusmc.data-mining.ontology</groupId> <artifactId>ontology-impl-db</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.erasmusmc.data-mining.peregrine</groupId> <artifactId>peregrine-normalizer</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.erasmusmc.data-mining.peregrine</groupId> <artifactId>peregrine-tokenizer</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.erasmusmc.data-mining.peregrine</groupId> <artifactId>peregrine-disambiguator</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.erasmusmc.data-mining.peregrine</groupId> <artifactId>peregrine-impl-hash</artifactId> <version>1.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>