Я очень новичок в net-beans 8.0.2 и хочу запустить java Artificog.com, но theres error ниже после Run:netbeans Ошибка запуска: Не удалось выполнить цель org.codehaus.mojo: exec-maven-plugin: 1.2.1
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project MachineLearning: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]
To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.
For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
и это pom.xml:
<?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>com.artificog</groupId>
<artifactId>MachineLearning</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
</project>
я мне нужно установить что-то? любая помощь оценена.
-Спасибо
спасибо за ваш ответ, был восклицательный знак на линии подключения JDBC, который я передаю, создаю db и успешные шаги подключения, на данный момент нет ошибки, но все же сборка происходит с ошибкой: Запуск программы ... Исключение в потоке " основной»java.lang.IndexOutOfBoundsException: Индекс: 0 Размер: 0 \t в java.util.ArrayList.rangeCheck (ArrayList.java:653) \t в java.util.ArrayList.get (ArrayList.java:429) \t at com.artificog.machinelearning.Main.run (Main.java:60) \t at com.artificog.machinelearning.Main.main (Main.java:42) BUILD FAILURE Что делать? + Спасибо –