Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0001420: Generate parameter documentation automatically from symmetri…
…c-default.properties.
  • Loading branch information
erilong committed Feb 14, 2014
1 parent 973b061 commit a16b3a7
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 762 deletions.
51 changes: 51 additions & 0 deletions symmetric-assemble/pom.xml
Expand Up @@ -156,6 +156,57 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>generate-startup-parameters</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<includePluginDependencies>true</includePluginDependencies>
<mainClass>org.jumpmind.properties.DefaultParameterParser</mainClass>
<arguments>
<argument>/symmetric-default.properties</argument>
<argument>${docbook.build}/startup-parameters.xml</argument>
<argument>false</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>generate-runtime-parameters</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<includePluginDependencies>true</includePluginDependencies>
<mainClass>org.jumpmind.properties.DefaultParameterParser</mainClass>
<arguments>
<argument>/symmetric-default.properties</argument>
<argument>${docbook.build}/runtime-parameters.xml</argument>
<argument>true</argument>
</arguments>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.jumpmind.symmetric</groupId>
<artifactId>symmetric-util</artifactId>
<version>3.5.17-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric</groupId>
<artifactId>symmetric-core</artifactId>
<version>3.5.17-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.agilejava.docbkx</groupId>
<artifactId>docbkx-maven-plugin</artifactId>
Expand Down

0 comments on commit a16b3a7

Please sign in to comment.