tiny-weka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nz.ac.waikato.cms.weka</groupId> <artifactId>tiny-weka</artifactId> <version>3.9.3cbb52f21-2</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> <groupId>nz.ac.waikato.cms.weka</groupId> <artifactId>tiny-weka</artifactId> <version>3.9.3cbb52f21-2</version><!-- tiny-weka-version --> <packaging>jar</packaging> <name>tiny-weka</name> <description>The Waikato Environment for Knowledge Analysis (WEKA), a machine learning workbench. This artifact represents the bare API of the developer version, with no package manager, PMML, XML or user interface. It is aimed at commercial applications that license some of WEKA's algorithms. </description> <url>http://www.cs.waikato.ac.nz/ml/weka/</url> <organization> <name>University of Waikato, Hamilton, NZ</name> <url>http://www.waikato.ac.nz/</url> </organization> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>wekateam</id> <name>The WEKA Team</name> <email>wekalist@list.waikato.ac.nz</email> </developer> </developers> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <scm> <connection>scm:git:ssh://git@github.com/Waikato/tiny-weka</connection> <developerConnection>scm:git:ssh://git@github.com/Waikato/tiny-weka</developerConnection> <url>https://github.com/Waikato/tiny-weka</url> <tag>tiny-weka-3.9.3cbb52f21-2</tag> </scm> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>java8-compiler-plugin</id> <activation> <jdk>1.8</jdk> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>java9andlater-compiler-plugin</id> <activation> <jdk>[9,)</jdk> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>8</release> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <!-- used for skipping tests --> <id>no-tests</id> <properties> <skipTests>true</skipTests> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>com.github.vbmacher</groupId> <artifactId>java-cup-runtime</artifactId> <version>11b-20160615</version> <scope>compile</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <localCheckout>true</localCheckout> <pushChanges>true</pushChanges> <commitByProject>true</commitByProject> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> <configuration> <filesets> <fileset> <directory>.</directory> <includes> <include>**/*~</include> <include>**/.attach_pid*</include> <include>**/hs_err_pid*</include> </includes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <excludeResources>true</excludeResources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <maxmemory>1000m</maxmemory> <subpackages>weka</subpackages> <show>public</show> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- execute via: mvn parsergen:build --> <plugin> <groupId>com.github.fracpete</groupId> <artifactId>parsergen-maven-plugin</artifactId> <version>0.0.1</version> <configuration> <directories> <directory>${project.basedir}/src/main/resources/weka/core/expressionlanguage/parser</directory> </directories> </configuration> </plugin> </plugins> </build> </project>