apiviz
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.2.GA</version> </dependency>
<?xml version="1.0" encoding="ISO-8859-1"?> <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.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.2.GA</version> <packaging>jar</packaging> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>9</version> </parent> <name>APIviz</name> <description> APIviz is a JavaDoc doclet which extends the Java standard doclet. It generates comprehensive UML-like class and package diagrams that help the quick understanding of the overall API structure. </description> <url>http://www.jboss.org/apiviz/</url> <organization> <name>JBoss - a division of Red Hat</name> <url>http://www.jboss.org/</url> </organization> <inceptionYear>2008</inceptionYear> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl.html</url> </license> </licenses> <scm> <connection>scm:svn:http://anonsvn.jboss.org/repos/apiviz/tags/apiviz-1.3.2.GA</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/apiviz/tags/apiviz-1.3.2.GA</developerConnection> </scm> <properties> <jdepend-version>2.9.1</jdepend-version> </properties> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.5.0</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> <optional>true</optional> </dependency> <!-- JDepend for package dependency analysis --> <dependency> <groupId>jdepend</groupId> <artifactId>jdepend</artifactId> <version>${jdepend-version}</version> <scope>compile</scope> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> <source>1.5</source> <target>1.5</target> <debug>true</debug> <optimize>true</optimize> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/Abstract*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-source</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> <breakiterator>true</breakiterator> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> <encoding>UTF-8</encoding> <links> <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> </links> <locale>en_US</locale> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <configuration> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> <linkJavadoc>false</linkJavadoc> </configuration> </plugin> <plugin> <!-- TODO: find out if there is a better way to do this. This method depends on ant-contrib which hasn't been updated in a very long time. --> <artifactId>maven-antrun-plugin</artifactId> <version>1.2</version><!-- 1.3+ is not compatible with ant-contrib --> <executions> <execution> <id>add-license</id> <phase>package</phase> <configuration> <tasks> <taskdef resource="net/sf/antcontrib/antlib.xml" /> <if> <or> <equals arg1="${project.packaging}" arg2="jar" /> <equals arg1="${project.packaging}" arg2="bundle" /> </or> <then> <move file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/${project.build.finalName}.orig.jar" /> <zip destfile="${project.build.directory}/${project.build.finalName}.jar"> <zipfileset dir="${basedir}" prefix="META-INF/"> <include name="LICENSE.*" /> <include name="NOTICE.*" /> <include name="COPYRIGHT.*" /> </zipfileset> <zipfileset src="${settings.localRepository}/jdepend/jdepend/${jdepend-version}/jdepend-${jdepend-version}.jar" filemode="644" dirmode="755"> <exclude name="META-INF/**" /> </zipfileset> <zipfileset src="${project.build.directory}/${project.build.finalName}.orig.jar" filemode="644" dirmode="755"> <exclude name="*/*/*/example/**" /> <exclude name="jdepend/**" /> </zipfileset> </zip> <delete file="${project.build.directory}/${project.build.finalName}.orig.jar" /> <move file="${project.build.directory}/${project.build.finalName}-sources.jar" tofile="${project.build.directory}/${project.build.finalName}-sources.orig.jar" /> <zip destfile="${project.build.directory}/${project.build.finalName}-sources.jar"> <zipfileset dir="${basedir}" prefix="META-INF/"> <include name="LICENSE.*" /> <include name="NOTICE.*" /> <include name="COPYRIGHT.*" /> </zipfileset> <zipfileset src="${project.build.directory}/${project.build.finalName}-sources.orig.jar" filemode="644" dirmode="755"> <exclude name="*/*/*/example/**" /> </zipfileset> </zip> <delete file="${project.build.directory}/${project.build.finalName}-sources.orig.jar" /> </then> </if> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>ant-contrib</groupId> <artifactId>ant-contrib</artifactId> <version>1.0b2</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>attach-distribution</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>${basedir}/src/assembly/default.xml</descriptor> </descriptors> <attach>false</attach> <appendAssemblyId>true</appendAssemblyId> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://svn.jboss.org/repos/apiviz/tags</tagBase> <!-- We don't want to use the default release profile because it causes the JavaDoc and source jars to be deployed twice. --> <useReleaseProfile>false</useReleaseProfile> <!-- Activate a custom profile called "release" --> <arguments>-Prelease</arguments> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <!-- reuse our just compiled version to run javadoc against our tests. Cheeky huh? --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <configuration> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>${version}</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <docencoding>UTF-8</docencoding> <encoding>UTF-8</encoding> <charset>UTF-8</charset> <locale>en_US</locale> <author>true</author> <version>true</version> <keywords>true</keywords> <breakiterator>true</breakiterator> <additionalparam> -link http://java.sun.com/javase/6/docs/api/ -sourceclasspath ${project.build.outputDirectory} -category default:$00FF5d:$40E0D0 -category aCategory:$fdc298:$ff6347 -category bCategory:$d082fe -category testColor:skyblue2:royalblue3 </additionalparam> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> </reports> </reportSet> <reportSet> <id>test-html</id> <reports> <report>test-javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>