heatmap-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.uniwue.dmir.heatmap</groupId> <artifactId>heatmap-core</artifactId> <version>0.1.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> <artifactId>heatmap-core</artifactId> <packaging>jar</packaging> <parent> <groupId>de.uniwue.dmir.heatmap</groupId> <artifactId>heatmap-parent</artifactId> <version>0.1.2</version> </parent> <name>Heatmap Framework - Core</name> <description>The core component of a general framework for generating heatmaps.</description> <url>https://github.com/uniwue-dmir/de.uniwue.dmir.heatmap</url> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name> <url>http://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <scm> <url>git@github.com:uniwue-dmir/de.uniwue.dmir.heatmap.git</url> <connection>scm:git:git@github.com:uniwue-dmir/de.uniwue.dmir.heatmap.git</connection> <developerConnection>scm:git:git@github.com:uniwue-dmir/de.uniwue.dmir.heatmap.git</developerConnection> </scm> <developers> <developer> <name>Martin Becker</name> <email>becker@informatik.uni-wuerzburg.de</email> <organization>DMIR - University of Wuerzburg</organization> <organizationUrl>http://www.is.informatik.uni-wuerzburg.de/dmir/</organizationUrl> </developer> </developers> <profiles> <profile> <id>de.uniwue.dmir.heatmap</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> </profiles> <repositories> <!-- GitHub repository. --> <repository> <id>uniwue-dmir-repository</id> <releases> <enabled>true</enabled> <checksumPolicy>ignore</checksumPolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>http://uniwue-dmir.github.io/maven-repository/releases</url> </repository> </repositories> <dependencies> <!-- for easier Java beans definition --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>0.12.0</version> </dependency> <!-- logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.11</version> </dependency> <!-- spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.2.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>3.2.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.2.1.RELEASE</version> </dependency> <!-- database access --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.24</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.2.0</version> </dependency> <!-- R-Tree implementation --> <dependency> <groupId>com.newbrightidea.util</groupId> <artifactId>util-core</artifactId> <version>2013.02.22</version> </dependency> <!-- JSON utilities --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId> <version>1.9.13</version> </dependency> <!-- matrix utilities --> <dependency> <groupId>com.googlecode.efficient-java-matrix-library</groupId> <artifactId>ejml</artifactId> <version>0.23</version> </dependency> <!-- CSV utilities --> <dependency> <groupId>net.sf.supercsv</groupId> <artifactId>super-csv</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>net.sf.supercsv</groupId> <artifactId>super-csv-dozer</artifactId> <version>2.1.0</version> </dependency> <!-- testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <versionRange>[2.0,)</versionRange> <goals> <goal>copy-dependencies</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.3</version> <configuration> <header>src/etc/license/LICENSE-HEADER.template</header> <properties> <year>${project.inceptionYear}</year> <owner>Martin Becker</owner> <email>becker@informatik.uni-wuerzburg.de</email> <description>${project.name}</description> </properties> <excludes> <exclude>pom.xml</exclude> <exclude>LICENSE</exclude> <exclude>src/main/resources/**</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/etc/**</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> <configuration> <outputDirectory>${project.build.directory}/release/lib</outputDirectory> </configuration> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <outputDirectory>${project.build.directory}/release/</outputDirectory> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addClasspath>true</addClasspath> <mainClass>de.uniwue.dmir.heatmap.EntryPoint</mainClass> <classpathPrefix>./lib/</classpathPrefix> </manifest> </archive> </configuration> <executions> <execution> <phase>install</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <descriptors> <descriptor>src/etc/build/assembly.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>