https://github.com/awojna/Rseslib
Raw File
Tip revision: 75e4bb05f3cd17867666a38884a52446aac3ac84 authored by awojna on 07 February 2024, 15:40:42 UTC
Fix to bug #8 - Unhandled exception while creating AQ15 model fixed
Tip revision: 75e4bb0
pom.xml
<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>pl.edu.mimuw.rseslib</groupId>
  <artifactId>rseslib</artifactId>
  <version>3.3.2-SNAPSHOT</version>
  <name>Rseslib</name>
  <description>Rough set and machine learning data structures and algorithms</description>
  <dependencies>
  	<dependency>
  		<groupId>nz.ac.waikato.cms.weka</groupId>
  		<artifactId>weka-stable</artifactId>
  		<version>3.8.6</version>
  	</dependency>
  	<dependency>
  		<groupId>jfree</groupId>
  		<artifactId>jfreechart</artifactId>
  		<version>0.9.21</version>
  	</dependency>
  </dependencies>
  <build>
    <plugins>
	  <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>copy-dependencies</goal>
            </goals>
            <configuration>
              <includeArtifactIds>weka-stable,jfreechart,jcommon</includeArtifactIds>
              <outputDirectory>${project.build.directory}</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
back to top