Выполнение проекта Scala и Maven - PullRequest
0 голосов
/ 17 мая 2018

Я создал простой Maven-проект Scala в Scala Ide затмения, используя следующие детали -

Идентификатор артефакта - scala-archetype-simple

Идентификатор группы - net.alchim31.maven

После создания проекта я изменил файл 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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.test</groupId>
    <artifactId>scalapoc</artifactId>
    <version>0.0.1</version>
    <name>${project.artifactId}</name>
    <description>Test scala app</description>

    <properties>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>
        <encoding>UTF-8</encoding>
        <scala.version>2.11.5</scala.version>
        <scala.compat.version>2.11</scala.compat.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>${scala.version}</version>
        </dependency>

        <!-- Test -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2-core_${scala.compat.version}</artifactId>
            <version>2.4.16</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2-junit_${scala.compat.version}</artifactId>
            <version>2.4.16</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_${scala.compat.version}</artifactId>
            <version>2.2.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>src/main/scala</sourceDirectory>
        <testSourceDirectory>src/test/scala</testSourceDirectory>
        <plugins>
            <plugin>
                <!-- see http://davidb.github.com/scala-maven-plugin -->
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
                <version>3.2.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>testCompile</goal>
                        </goals>
                        <configuration>
                            <args>
                                <!-- <arg>-make:transitive</arg> -->
                                <arg>-dependencyfile</arg>
                                <arg>${project.build.directory}/.scala_dependencies</arg>
                            </args>
                            <archive>
                                <manifest>
                                    <mainClass>App.scala</mainClass>
                                </manifest>
                            </archive>

                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.18.1</version>
                <configuration>
                    <useFile>false</useFile>
                    <disableXmlReport>true</disableXmlReport>
                    <!-- If you have classpath issue like NoDefClassError,... -->
                    <!-- useManifestOnlyJar>false</useManifestOnlyJar -->
                    <includes>
                        <include>**/*Test.*</include>
                        <include>**/*Suite.*</include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

Я также добавил запись манифеста внутри тега plugin.

<archive>
    <manifest>
        <mainClass>App.scala</mainClass>
    </manifest>
</archive>

У меня есть только один App.scala файл и один тестовый файл, доступный в проекте.Сборка прошла успешно.Но при попытке выполнить jar с использованием java -jar <jar_name> ошибка ниже -

без атрибута основного манифеста, в scalapoc-0.0.1.jar

При попытке выполнитькоманда java -cp scalapoc-0.0.1.jar com.test.scalapoc.App.scala ошибка ниже -

Ошибка: не удалось найти или загрузить основной класс com.test.scalapoc.App.scala

Пожалуйста, укажите, что нужнонеобходимо выполнить банку.

1 Ответ

0 голосов
/ 18 мая 2018

try

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>com.test.scalapoc.App</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
  • .scala только для исходного кода, источник не является исполняемым
  • тег архива является частью конфигурации плагина

см. https://maven.apache.org/shared/maven-archiver/examples/classpath.html#Make

ОБНОВЛЕНИЕ 2018-06-05:

Чтобы создать автономный файл JAR (без необходимости определять путь к классам с библиотекой scala и другими зависимостямив командной строке), вы должны создать jar, включающий другие классы / jar.

see:

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...