
META-INF.maven.com.github.dakusui.valid8j-pcond.pom.xml Maven / Gradle / Ivy
The newest version!
<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>com.github.dakusui</groupId> <artifactId>valid8j-pcond</artifactId> <packaging>jar</packaging> <version>1.0.3</version> <description>Overhead-less DbC library</description> <name>valid8j</name> <url>https://github.com/dakusui/valid8j</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:[email protected]/dakusui/${project.name}.git </connection> <developerConnection>scm:git:[email protected]:dakusui/${project.name}.git </developerConnection> <url>http://dakusui.github.io/${project.name}</url> <tag>valid8j-pcond-1.0.3</tag> </scm> <developers> <developer> <id>dakusui</id> <name>Hiroshi Ukai</name> <email>[email protected]</email> </developer> </developers> <properties> <!-- project variables --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <env.GEM_PATH>${project.basedir}/generated/build/gems</env.GEM_PATH> <maven-compiler-plugin.source>1.8</maven-compiler-plugin.source> <maven-compiler-plugin.target>1.8</maven-compiler-plugin.target> <!-- unit testing --> <junit.version>4.13.2</junit.version> <opentest4j.version>1.2.0</opentest4j.version> <hamcrest-junit.version>2.0.0.0</hamcrest-junit.version> <assertj-core.version>3.6.1</assertj-core.version> <!-- project documentation --> <asciidoclet.version>1.5.6</asciidoclet.version> <asciidoctor.maven.plugin.version>2.0.0-RC.1 </asciidoctor.maven.plugin.version> <asciidoctorj.version>2.2.0</asciidoctorj.version> <asciidoctorj.diagram.version>2.0.1</asciidoctorj.diagram.version> <jruby.version>9.2.12.0</jruby.version> <!-- coverage reporting --> <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version> <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version> <pitest-maven.version>1.7.3</pitest-maven.version> <!-- project execution --> <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> <maven-clean-plugin.version>3.0.0</maven-clean-plugin.version> <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> <maven-site-plugin.version>3.8.2</maven-site-plugin.version> <maven-project-info-reports-plugin.version>3.0.0 </maven-project-info-reports-plugin.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-release-plugin.version>2.5</maven-release-plugin.version> <build-helper-maven-plugin.version>3.0.0 </build-helper-maven-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> </properties> <dependencies> <dependency> <groupId>org.opentest4j</groupId> <artifactId>opentest4j</artifactId> <version>${opentest4j.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-junit</artifactId> <version>${hamcrest-junit.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj-core.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (maybe moved to parent pom) --> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven-compiler-plugin.source}</source> <target>${maven-compiler-plugin.target}</target> <compilerArgs> <!-- <arg>-Xlint:all,-options,-path</arg> --> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>3.0.0</version> <!-- Use the version that suits your needs --> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <!-- configuration> <argLine>-ea</argLine> </configuration --> <executions> <execution> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <excludes> <exclude>none</exclude> </excludes> <includes> <include>**/*IT</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source> ${project.build.directory}/generated-sources/local </source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> <version>${exec-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> <dependencies> <!-- Comment this section to use the default jruby artifact provided by the plugin --> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor.maven.plugin.version}</version> </dependency> </dependencies> <configuration> <!-- disable generateReports if you don't want to include the built-in reports --> <generateReports>true</generateReports> <generateSitemap>true</generateSitemap> <relativizeDecorationLinks>false</relativizeDecorationLinks> <locales>en</locales> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> <skipDeploy>false</skipDeploy> <!-- asciidoc --> <!-- optional site-wide AsciiDoc attributes --> <!-- attributes> <icons>font</icons> <source-highlighter>coderay</source-highlighter> <coderay-css>style</coderay-css> <toclevels>2</toclevels> </attributes> </asciidoc --> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <doclet>org.asciidoctor.Asciidoclet</doclet> <docletArtifact> <groupId>org.asciidoctor</groupId> <artifactId>asciidoclet</artifactId> <version>${asciidoclet.version}</version> </docletArtifact> <overview>src/main/javadoc/overview.adoc</overview> <additionalparam> --base-dir ${project.basedir} --attribute "name=${project.name}" --attribute "version=${project.version}" --attribute "imagesoutdir=.asciidoctor/diagram" --require asciidoctor-diagram --gem-path ${env.GEM_PATH} --attribute data-uri </additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor.maven.plugin.version}</version> <dependencies> <!-- Comment this section to use the default jruby artifact provided by the plugin --> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> </dependency> <!-- Comment this section to use the default AsciidoctorJ artifact provided by the plugin --> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj</artifactId> <version>${asciidoctorj.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-diagram</artifactId> <version>${asciidoctorj.diagram.version}</version> </dependency> </dependencies> <configuration> <sourceDirectory>src/site/asciidoc</sourceDirectory> <requires> <require>asciidoctor-diagram</require> </requires> <attributes> <!-- Example below shows how to specify in this pom instead of System's PATH, the location of dot command of Graphviz, required by PlantUML libraries --> <!-- Windows: <graphvizdot>C:\Program Files (x86)\Graphviz2.38\bin\dot.exe</graphvizdot> --> <!-- *nix : <graphvizdot>/usr/local/bin/dot</graphvizdot> --> </attributes> </configuration> <executions> <execution> <id>generate-html-doc</id> <phase>site</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>html5</backend> <outputDirectory>target/site</outputDirectory> <attributes> <imagesdir>.</imagesdir> <toc>left</toc> <icons>font</icons> <sectanchors>true</sectanchors> <idprefix /> <idseparator>-</idseparator> </attributes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <plugin> <!-- Run with mvn org.pitest:pitest-maven:mutationCoverage --> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>${pitest-maven.version}</version> <executions> <execution> <phase>pre-site</phase> <goals> <goal>mutationCoverage</goal> </goals> </execution> </executions> <configuration> <jvmArgs> <jvmArg>-ea</jvmArg> <jvmArg>-Dunderpitest=yes</jvmArg> </jvmArgs> <targetClasses> <param>com.github.dakusui.valid8j.*</param> </targetClasses> <targetTests> <param>*Test</param> </targetTests> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura-maven-plugin.version}</version> <configuration> <instrumentation> <includes> <include>com/github/dakusui/**/*.class</include> </includes> <excludes> <exclude>com/github/dakusui/valid8j_pcond/**/*.class</exclude> </excludes> </instrumentation> <formats> <format>html</format> <format>xml</format> </formats> <check /> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <configuration> <excludes> <exclude>com/github/dakusui/valid8j_pcond/**/*.class</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <!-- attached to Maven test phase --> <execution> <id>report</id> <phase>pre-site</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <!-- Run with mvn org.pitest:pitest-maven:mutationCoverage --> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution><!-- Remove diagram caches --> <id>remove diag-*.png files</id> <phase>clean</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>bash</executable> <arguments> <argument> ${basedir}/src/main/build_tools/remove-adoc-diags.sh </argument> </arguments> </configuration> </execution> <execution><!-- Run our version calculation script --> <id>Mangle pcond source</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable> ${basedir}/src/main/build_tools/import-pcond.sh </executable> </configuration> </execution> <execution><!-- Run our version calculation script --> <id>package-info.java generation</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>bash</executable> <arguments> <argument> ${basedir}/src/main/build_tools/package-info-adoc_to_package-info-java.sh </argument> </arguments> </configuration> </execution> <execution><!-- Run our version calculation script --> <id>asciidoctor-diagram-installation</id> <phase>package</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>bash</executable> <arguments> <argument> ${basedir}/src/main/build_tools/install-asciidoctor-diagram.sh </argument> </arguments> </configuration> </execution> <execution><!-- Run our version calculation script --> <id>publish-gh-pages</id> <phase>site-deploy</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>bash</executable> <arguments> <argument> ${basedir}/src/main/build_tools/publish-gh-pages.sh </argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <reportSets> <reportSet> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> <site> <id>${project.name}</id> <url>file:///${user.dir}/target/site-staging</url> </site> </distributionManagement> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy