简体   繁体   中英

Java classes generated using maven exec-maven-plugin “target” folder are not compiled

I have a maven project which uses exec-maven-plugin to generate the java classes into the target/generated-sources. The java classes generated underneath is never compiled during mvn clean install.

           <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>add-source</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                       <sources>
                 <source>${project.build.directory}/foldername</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.6.0</version>
            <executions>
                <execution>
                    <id>add-sources</id>
                    <goals>
                        <goal>java</goal>
                    </goals>
                    <phase>prepare-package</phase>
                    <configuration>
                        <mainClass>mainclass</mainClass>
                    </configuration>
                </execution>
            </executions>
        </plugin>

Do i have to use MOJO for this?

Using the build-helper-maven-plugin can be configured like the following:

<project>
  ...
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>3.0.0</version>
        <executions>
          <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>add-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>some directory</source>
                ...
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM