How to compile scala sources through maven integration in intellij idea?

I am studying circumflex orm and using maven with an idea for the first time. I expected my sources to srcbe compiled into a directory build. But this does not happen. And if I specify sourceDirectoryand outputDirectoryhow ${basedir}/srcor ${project.basedir}/build, I get intellij checking ideas that such folders do not exist (sic!)

<?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>C2Probe</groupId>
    <artifactId>C2Probe</artifactId>
    <version>1.0</version>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <outputDirectory>build</outputDirectory>

        <plugins>
            <plugin>
                <groupId>ru.circumflex</groupId>
                <artifactId>maven-cx-plugin</artifactId>
                <version>${cx.version}</version>
                <executions>
                    <execution>
                        <id>configure</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>cfg</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <properties>
        <cx.version>1.1</cx.version>
        <orm.connection.driver>org.postgresql.Driver</orm.connection.driver>
        <orm.connection.url>jdbc:postgresql:mydb</orm.connection.url>
        <orm.connection.username>myuser</orm.connection.username>
        <orm.connection.password>mypass</orm.connection.password>
    </properties>
    <dependencies>
        <dependency>
            <groupId>ru.circumflex</groupId>
            <artifactId>circumflex-orm</artifactId>
            <version>${cx.version}</version>
        </dependency>
    </dependencies>
</project>

What should I do to compile my sources?

+3
source share
2 answers
<build>
    <sourceDirectory>src/main/scala</sourceDirectory>

        <plugins>
            <plugin>
                <groupId>org.scala-tools</groupId>
                <artifactId>maven-scala-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>greet.Main</mainClass>
                </configuration>
            </plugin>
        </plugins>
</build>

Thanks http://www.nearinfinity.com/blogs/bryan_weber/scala_and_maven_with_maven.html for a good tutorial.

+3
source

Maven , target/classes. -, ( ) .

+2

Source: https://habr.com/ru/post/1756699/


All Articles