cloudflare-iuam-solver-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ninja-beans.crawler</groupId> <artifactId>cloudflare-iuam-solver-parent</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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> <groupId>com.ninja-beans.crawler</groupId> <artifactId>cloudflare-iuam-solver-parent</artifactId> <version>0.1.0</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>IuamSolver is the class for breaking through the Cloudflare's "I am Under Attack Mode".</description> <url>https://github.com/ninja-beans/cloudflare-iuam-solver</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Ninja Beans</name> <email>ninjabeans.x@gmail.com</email> <url>https://github.com/ninja-beans</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/ninja-beans/cloudflare-iuam-solver.git</connection> <developerConnection>scm:git:https://github.com/ninja-beans/cloudflare-iuam-solver.git</developerConnection> <url>https://github.com/ninja-beans/cloudflare-iuam-solver</url> <tag>HEAD</tag> </scm> <profiles> <profile> <id>release-sign-artifacts</id> <!-- mvn -DperformRelease=true deploy --> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- gpg --> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- sonatype release --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <modules> <module>cloudflare-iuam-solver</module> <module>cloudflare-iuam-solver-cli</module> <module>cloudflare-iuam-solver-dist</module> </modules> <properties> <java.version>11</java.version> <pmd.version>6.22.0</pmd.version> <checkstyle.version>8.29</checkstyle.version> <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-source-plugin.version>3.2.0</maven-source-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-surefire-plugin.version>3.0.0-M4</maven-surefire-plugin.version> <maven-jar-plugin.version>3.2.0</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-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-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version> <maven-pmd-plugin.version>3.13.0</maven-pmd-plugin.version> <maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version> <maven-assembly-plugin.version>3.2.0</maven-assembly-plugin.version> <maven-surefire-report-plugin.version>3.0.0-M4</maven-surefire-report-plugin.version> <maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> <versions-maven-plugin.version>2.7</versions-maven-plugin.version> <spotbugs-maven-plugin.version>3.1.12.2</spotbugs-maven-plugin.version> <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version> <spotless-maven-plugin.version>1.27.0</spotless-maven-plugin.version> <dependency-check-maven.version>5.2.4</dependency-check-maven.version> <requireMavenVersion.version>3.5</requireMavenVersion.version> <requireJavaVersion.version>1.8</requireJavaVersion.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>www.ninja-beans.com</id> <url>https://www.ninja-beans.com</url> </site> </distributionManagement> <pluginRepositories> <pluginRepository> <id>central</id> <url>https://repo.maven.apache.org/maven2/</url> <name>maven central repository</name> <releases> <enabled>true</enabled> <!-- http://maven.apache.org/pom.html#Repositories --> <updatePolicy>interval:180</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>apache.snapshots</id> <url>http://repository.apache.org/snapshots/</url> <name>maven repository for snapshots</name> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>interval:180</updatePolicy> </snapshots> </pluginRepository> <pluginRepository> <id>other.snapshots</id> <name>maven repository for snapshots (MojoHouse)</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>interval:180</updatePolicy> </snapshots> </pluginRepository> </pluginRepositories> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <!-- https://winterbe.com/posts/2018/08/29/migrate-maven-projects-to-java-11-jigsaw/ --> <argLine> --illegal-access=permit </argLine> <!-- https://stackoverflow.com/questions/50661648/spring-boot-fails-to-run-maven-surefire-plugin-classnotfoundexception-org-apache/50661649#50661649 --> <!-- <useSystemClassLoader>false</useSystemClassLoader> --> <!-- <forkCount>0</forkCount> --> <!-- <skip>true</skip> --> <!-- -Djdk.net.URLClassPath.disableClassPathURLCheck=true <forkCount>3</forkCount> <reuseForks>true</reuseForks> <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> --> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> </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> <artifactId>maven-jxr-plugin</artifactId> <version>${maven-jxr-plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> <configuration> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec-maven-plugin.version}</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>${maven-pmd-plugin.version}</version> <dependencies> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-core</artifactId> <version>${pmd.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-java</artifactId> <version>${pmd.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-javascript</artifactId> <version>${pmd.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-jsp</artifactId> <version>${pmd.version}</version> </dependency> </dependencies> <configuration> <rulesets> <ruleset>category/java/bestpractices.xml</ruleset> <ruleset>category/java/codestyle.xml</ruleset> <ruleset>category/java/design.xml</ruleset> <ruleset>category/java/documentation.xml</ruleset> <ruleset>category/java/errorprone.xml</ruleset> <ruleset>category/java/multithreading.xml</ruleset> <ruleset>category/java/performance.xml</ruleset> <ruleset>category/java/security.xml</ruleset> </rulesets> <targetJdk>${java.version}</targetJdk> <!--<failOnViolation>true</failOnViolation>--> <failOnViolation>false</failOnViolation> <failurePriority>1</failurePriority> <printFailingErrors>true</printFailingErrors> <verbose>true</verbose> </configuration> </plugin> <!-- SpotBugs --> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${spotbugs-maven-plugin.version}</version> <configuration> <effort>Max</effort> <threshold>Low</threshold> <maxRank>20</maxRank> <trace>true</trace> <!-- <failOnError>true</failOnError> --> <failOnError>false</failOnError> <xmlOutput>true</xmlOutput> <xmlOutputDirectory>target/site</xmlOutputDirectory> </configuration> </plugin> <!-- spotless --> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${dependency-check-maven.version}</version> </plugin> </plugins> </pluginManagement> <!-- enforcer --> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <phase>validate</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${requireMavenVersion.version}</version> </requireMavenVersion> <requireJavaVersion> <version>${requireJavaVersion.version}</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- versions --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> <configuration> <rulesUri>file://${session.executionRootDirectory}/config/maven-versions-plugin-rules.xml</rulesUri> <generateBackupPoms>false</generateBackupPoms> <allowRangeMatching>true</allowRangeMatching> </configuration> </plugin> <!-- exec --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <executable>java</executable> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>