xdoclet-plugin-ignore-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.xdoclet-plugin-ignore</groupId>
<artifactId>xdoclet-plugin-ignore-test</artifactId>
<version>1.0</version>
</dependency><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>
<!-- Project Information -->
<parent>
<groupId>com.googlecode.japis</groupId>
<artifactId>japis-java</artifactId>
<version>1.0</version>
</parent>
<groupId>com.googlecode.xdoclet-plugin-ignore</groupId>
<artifactId>xdoclet-plugin-ignore-test</artifactId>
<version>1.0</version>
<name>XDoclet2 Ignore Plugin Test</name>
<description>
Test project to check if unknown tags are really ignored.
</description>
<url>${japis.url}</url>
<!-- Properties -->
<properties>
<japis.google.project>xdoclet-plugin-ignore</japis.google.project>
<japis.google.scm>test.xdoclet-plugin-ignore</japis.google.scm>
<japis.compiler.source>1.4</japis.compiler.source>
<japis.compiler.target>1.4</japis.compiler.target>
</properties>
<!-- Environment -->
<distributionManagement>
<site>
<id>google-site</id>
<name>Google Code SCM</name>
<url>${japis.site.deploy}</url>
</site>
</distributionManagement>
<scm>
<connection>${japis.scm.connection}</connection>
<developerConnection>${japis.scm.connection}</developerConnection>
<url>${japis.scm.url}</url>
</scm>
<!-- Lifecycle -->
<build>
<plugins>
<!-- JAR assembly -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>false</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
<!-- Generate Hibernate mappings -->
<plugin>
<groupId>org.codehaus.xdoclet</groupId>
<artifactId>maven2-xdoclet2-plugin</artifactId>
<version>2.0.7</version>
<executions>
<execution>
<id>xdoclet.generate-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>xdoclet</goal>
</goals>
<configuration>
<configs>
<config>
<components>
<component>
<classname>org.xdoclet.plugin.hibernate.HibernateMappingPlugin</classname>
<params>
<version>3.0</version>
<destdir>${project.build.outputDirectory}</destdir>
<encoding>${project.build.sourceEncoding}</encoding>
</params>
</component>
<component>
<classname>com.googlecode.xdoclet.ignore.IgnorePlugin</classname>
</component>
</components>
<includes>**/test/*.java</includes>
</config>
</configs>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.xdoclet</groupId>
<artifactId>xdoclet-plugin-hibernate</artifactId>
<version>1.0.5</version>
</dependency>
<dependency>
<groupId>com.googlecode.xdoclet-plugin-ignore</groupId>
<artifactId>xdoclet-plugin-ignore</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>