mindoc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.objectweb.mind</groupId> <artifactId>mindoc</artifactId> <version>0.1-beta-2</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.objectweb.mind</groupId> <artifactId>mindoc</artifactId> <version>0.1-beta-2</version> <name>Mind Documentation Generator</name> <description>Document generator for MIND</description> <properties> <mind.version>0.1-beta-2-SNAPSHOT</mind.version> <!-- The login name on the Minalogic codendi (default is local user name, may be overridden on the command line or in settings.xml file). --> <minalogic.username>${user.name}</minalogic.username> </properties> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.objectweb.fractal.mind.compiler</groupId> <artifactId>adl-frontend</artifactId> <version>0.1-beta-2</version> </dependency> <dependency> <groupId>org.objectweb.fractal.mind.compiler</groupId> <artifactId>adl-backend</artifactId> <version>0.1-beta-2</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <classifier>jdk15</classifier> <version>5.8</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>objectweb-release</id> <name>ObjectWeb's release repository</name> <url>scp://forge.objectweb.org/var/lib/gforge/chroot/home/groups/maven/htdocs/maven2/</url> </repository> <snapshotRepository> <id>objectweb-snapshot</id> <name>ObjectWeb's snapshot repository</name> <url>scp://forge.objectweb.org/var/lib/gforge/chroot/home/groups/maven/htdocs/maven2-snapshot/</url> </snapshotRepository> </distributionManagement> <scm> <connection>scm:svn:https://minalogic.net/svnroot/P2012/tools/tags/mindoc/mindoc-0.1-beta-2</connection> <developerConnection>scm:svn:https://minalogic.net/svnroot/P2012/tools/tags/mindoc/mindoc-0.1-beta-2</developerConnection> </scm> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> <!-- The SCM user name. --> <username>${minalogic.username}</username> <!-- Workaround to prevent issue with svn client 1.5.0 and later (see http://jira.codehaus.org/browse/SCM-406) --> <remoteTagging>true</remoteTagging> <!-- Sub modules have the same version as this one. --> <autoVersionSubmodules>true</autoVersionSubmodules> <tagBase>https://minalogic.net/svnroot/P2012/tools/tags/mindoc</tagBase> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>copy-html-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/doc</outputDirectory> <resources> <resource> <directory>${basedir}/src/main/resources/html</directory> <includes> <include>*.css</include> <include>*.html</include> </includes> </resource> <!-- <resource> <directory>./</directory> <includes> <include>**/*.gif</include> <include>**/*.jpg</include> <include>**/*.png</include> </includes> </resource> --> </resources> </configuration> </execution> <execution> <id>copy-test-resources</id> <phase>process-test-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>target/doc</outputDirectory> <resources> <resource> <directory>src/test/resources</directory> <includes> <include>**/*.gif</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <finalName>mindoc-${project.version}</finalName> <descriptors> <descriptor>src/assemble/bin-release.xml</descriptor> </descriptors> </configuration> <executions> <!-- Generates binary assemblies at package phase. --> <execution> <id>bin-packages</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> <!-- Generates directory assembly for integration test --> <execution> <id>bin-dir</id> <phase>pre-integration-test</phase> <goals> <goal>directory-inline</goal> </goals> <configuration> <outputDirectory> ${basedir}/target </outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <executable>make</executable> <workingDirectory> ${basedir}/target/mindoc-${project.version}-bin.dir/mindoc-${project.version}/example </workingDirectory> <arguments> <argument> MINDOC_ROOT=.. </argument> <argument> REPORT_ROOT=${basedir}/target/linklint-report </argument> <argument>clean</argument> <argument>all</argument> </arguments> </configuration> <executions> <execution> <id>test makefile assembly</id> <goals> <goal>exec</goal> </goals> <phase>integration-test</phase> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!-- Use Java 1.5 --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>