xuml-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>xuml-tools</artifactId> <version>0.6</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>xuml-tools</artifactId> <version>0.6</version> <name>${project.artifactId}</name> <packaging>pom</packaging> <description>A collection of tools for Executable UML in the style of Mellor and Balcer and miUML.org based on JPA and Akka</description> <url>https://github.com/davidmoten/xuml-tools</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <ciManagement> <system>CloudBees</system> <url>https://xuml-tools.ci.cloudbees.com</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/xuml-tools/issues</url> </issueManagement> <inceptionYear>2012</inceptionYear> <scm> <connection>scm:git:https://github.com/davidmoten/xuml-tools.git</connection> <developerConnection>scm:git:https://github.com/davidmoten/xuml-tools.git</developerConnection> <url>scm:git:https://github.com:davidmoten/xuml-tools.git</url> <tag>0.6</tag> </scm> <developers> <developer> <id>dave</id> <name>Dave Moten</name> <url>https://github.com/davidmoten/</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+10</timezone> </developer> </developers> <properties> <compiler.plugin.version>3.10.1</compiler.plugin.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <gae.version>1.9.25</gae.version> <gae.plugin.version>0.9.6</gae.plugin.version> <junit.version>4.13.2</junit.version> <guava.version>31.1-jre</guava.version> <derby.version>10.16.1.1</derby.version> <h2.version>2.1.214</h2.version> <slf4j.version>1.7.36</slf4j.version> <checkstyle.version>3.2.0</checkstyle.version> <javadoc.version>3.4.1</javadoc.version> <pmd.version>3.19.0</pmd.version> <project.info.version>3.1.1</project.info.version> <jxr.version>3.3.0</jxr.version> <taglist.version>3.0.0</taglist.version> <m3.site.version>3.12.1</m3.site.version> <changelog.version>2.2</changelog.version> <coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir> <dashboard.version>1.0.0-beta-1</dashboard.version> <changelog.version>2.2</changelog.version> <coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir> <xuml.tools.version>${project.version}</xuml.tools.version> <hsqldb.version>2.7.1</hsqldb.version> <build.helper.version>3.3.0</build.helper.version> <deploy.plugin.version>3.0.0</deploy.plugin.version> </properties> <modules> <module>gae</module> <module>hibernate</module> <module>xuml-diagrams-core</module> <module>xuml-diagrams</module> <module>xuml-model-compiler</module> <module>xuml-model-compiler-runtime</module> <module>miuml-jaxb</module> <module>xuml-tools-maven-plugin</module> <module>xuml-model-archetype</module> <module>order-tracker</module> <module>order-tracker-webapp</module> <module>state-diagram-viewer</module> <module>dummy</module> </modules> <profiles> <profile> <id>exclude-from-site</id> <activation> <property> <name>site</name> <value>!true</value> </property> </activation> <modules> <module>xuml-model-compiler-test</module> </modules> </profile> </profiles> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> <configuration> <verbose>true</verbose> <fork>true</fork> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${m3.site.version}</version> <executions> <execution> <id>attach-descriptor</id> <goals> <goal>attach-descriptor</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <aggregate>true</aggregate> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <site> <id>xuml-tools-site</id> <url>http://davidmoten.github.io/xuml-tools</url> </site> </distributionManagement> <reporting> <outputDirectory>${project.build.directory}/site</outputDirectory> <plugins> <!-- this one should go first so that it is available to other plugins when they run --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${jxr.version}</version> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <!--<configLocation>/checkstyle.xml</configLocation> --> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${pmd.version}</version> <configuration> <targetJdk>${maven.compiler.target}</targetJdk> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${project.info.version}</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>${taglist.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <configuration> <aggregate>true</aggregate> <excludePackageNames>abc:all_types:one_to_many:one_to_one:one_to_one_many:one_to_zero_one:secondary_identifiers:unary_one:unary_zero_one:unary_many:zero_one_to_many:zero_one_to_one_many:bookstore:extensions:specialization:many_to_many:many_to_many_association</excludePackageNames> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <!-- commented this plugin out because cannot run offline (e.g. at home) --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <version>${changelog.version}</version> <configuration> <username>${svn.username}</username> <password>${svn.password}</password> </configuration> </plugin> --> </plugins> </reporting> </project>