core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openimaj</groupId> <artifactId>core</artifactId> <version>1.3.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>openimaj-core-libs</artifactId> <groupId>org.openimaj</groupId> <version>1.3.10</version> <relativePath>../</relativePath> </parent> <artifactId>core</artifactId> <name>The OpenIMAJ Core Library</name> <inceptionYear>2011</inceptionYear> <description> Core library functionality concerned with general programming problems rather than multimedia specific functionality. Includes I/O utilities, randomisation, hashing and type conversion. </description> <dependencies> <dependency> <groupId>org.openimaj</groupId> <artifactId>core-citation</artifactId> <version>1.3.10</version> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.6.3</version> </dependency> <dependency> <groupId>net.sf.trove4j</groupId> <artifactId>trove4j</artifactId> <version>3.0.2</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>25.1-jre</version> </dependency> <dependency> <groupId>colt</groupId> <artifactId>colt</artifactId> <version>1.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.11.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>com.esotericsoftware.kryo</groupId> <artifactId>kryo</artifactId> <version>2.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>vigna.dsi.unimi.it</groupId> <artifactId>jal</artifactId> <version>20031117</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.6</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>uk.com.robust-it</groupId> <artifactId>cloning</artifactId> <version>1.9.10</version> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <resources> <resource> <directory>src/main/filtered-resources</directory> <filtering>true</filtering> <targetPath>org/openimaj/</targetPath> <includes> <include>OpenIMAJ.properties</include> </includes> </resource> <resource> <directory>src/main/resources/</directory> <filtering>false</filtering> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <header>src/etc/header.txt</header> <strictCheck>true</strictCheck> <properties> <year>${project.inceptionYear}</year> </properties> <excludes> <exclude>AUTHORS</exclude> <exclude>COPYING</exclude> </excludes> <mapping> <jtemp>JAVADOC_STYLE</jtemp> </mapping> <useDefaultMapping>true</useDefaultMapping> </configuration> </plugin> <plugin> <groupId>uk.ac.soton.ecs.jsh2</groupId> <artifactId>jtemp-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <argLine>-Xmx1G -Djava.awt.headless=true</argLine> <!-- <parallel>classes</parallel> <perCoreThreadCount>2</perCoreThreadCount> --> </configuration> </plugin> </plugins> </build> </project>