Skip to content

Commit

Permalink
Move exec-maven-plugin configuration to execution
Browse files Browse the repository at this point in the history
This allows having multiple executions.
  • Loading branch information
electrum committed Jun 19, 2017
1 parent f75ec73 commit 67b0090
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions presto-docs/pom.xml
Expand Up @@ -49,20 +49,23 @@
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>validate-reserved</id>
<phase>validate</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.facebook.presto.sql.ReservedIdentifiers</mainClass>
<arguments>
<argument>validateDocs</argument>
<argument>${project.basedir}/src/main/sphinx/language/reserved.rst</argument>
</arguments>
</configuration>
</execution>
</executions>
<configuration>
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
<mainClass>com.facebook.presto.sql.ReservedIdentifiers</mainClass>
<arguments>
<argument>validateDocs</argument>
<argument>${project.basedir}/src/main/sphinx/language/reserved.rst</argument>
</arguments>
</configuration>
<dependencies>
<dependency>
Expand Down

0 comments on commit 67b0090

Please sign in to comment.