123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723 |
- <?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/maven-v4_0_0.xsd">
- <!--
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- -->
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache</groupId>
- <artifactId>apache</artifactId>
- <version>18</version>
- <relativePath />
- <!-- no parent resolution -->
- </parent>
- <groupId>org.apache.zookeeper</groupId>
- <artifactId>parent</artifactId>
- <packaging>pom</packaging>
- <!-- to change version: mvn -\-batch-mode release:update-versions -DdevelopmentVersion=3.6.0-SNAPSHOT -->
- <version>3.6.0-SNAPSHOT</version>
- <name>Apache ZooKeeper</name>
- <description>
- ZooKeeper is a centralized service for maintaining configuration information, naming,
- providing distributed synchronization, and providing group services. All of these kinds
- of services are used in some form or another by distributed applications. Each time they
- are implemented there is a lot of work that goes into fixing the bugs and race conditions
- that are inevitable. Because of the difficulty of implementing these kinds of services,
- applications initially usually skimp on them ,which make them brittle in the presence of
- change and difficult to manage. Even when done correctly, different implementations of
- these services lead to management complexity when the applications are deployed.
- </description>
- <url>http://zookeeper.apache.org</url>
- <inceptionYear>2008</inceptionYear>
- <!-- Set here so we can consistently use the correct name, even on branches with
- an ASF parent pom older than v15. Also uses the url from v18.
- -->
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <modules>
- <module>zookeeper-docs</module>
- <module>zookeeper-jute</module>
- <module>zookeeper-server</module>
- <module>zookeeper-client</module>
- <module>zookeeper-recipes</module>
- <module>zookeeper-assembly</module>
- </modules>
- <scm>
- <connection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</connection>
- <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</developerConnection>
- <url>https://gitbox.apache.org/repos/asf/zookeeper.git</url>
- </scm>
- <issueManagement>
- <system>JIRA</system>
- <url>http://issues.apache.org/jira/browse/ZOOKEEPER</url>
- </issueManagement>
- <ciManagement>
- <system>hudson</system>
- <url>http://hudson.zones.apache.org/hudson/view/ZooKeeper/job/ZooKeeper-TRUNK/</url>
- </ciManagement>
- <mailingLists>
- <mailingList>
- <name>User List</name>
- <subscribe>user-subscribe@zookeeper.apache.org</subscribe>
- <unsubscribe>user-unsubscribe@zookeeper.apache.org</unsubscribe>
- <post>user@zookeeper.apache.org</post>
- <archive>http://mail-archives.apache.org/mod_mbox/zookeeper-user/</archive>
- </mailingList>
- <mailingList>
- <name>Developer List</name>
- <subscribe>dev-subscribe@zookeeper.apache.org</subscribe>
- <unsubscribe>dev-unsubscribe@zookeeper.apache.org</unsubscribe>
- <post>dev@zookeeper.apache.org</post>
- <archive>http://mail-archives.apache.org/mod_mbox/zookeeper-dev/</archive>
- </mailingList>
- <mailingList>
- <name>Commits List</name>
- <subscribe>commits-subscribe@zookeeper.apache.org</subscribe>
- <unsubscribe>commits-unsubscribe@zookeeper.apache.org</unsubscribe>
- <archive>http://mail-archives.apache.org/mod_mbox/zookeeper-commits/</archive>
- </mailingList>
- <mailingList>
- <name>Issues List</name>
- <subscribe>issues-subscribe@zookeeper.apache.org</subscribe>
- <unsubscribe>issues-unsubscribe@zookeeper.apache.org</unsubscribe>
- <archive>http://mail-archives.apache.org/mod_mbox/zookeeper-issues/</archive>
- </mailingList>
- <mailingList>
- <name>Builds List</name>
- <subscribe>builds-subscribe@zookeeper.apache.org</subscribe>
- <unsubscribe>builds-unsubscribe@zookeeper.apache.org</unsubscribe>
- <archive>http://mail-archives.apache.org/mod_mbox/zookeeper-builds/</archive>
- </mailingList>
- </mailingLists>
- <developers>
- <developer>
- <id>tdunning</id>
- <name>Ted Dunning </name>
- <email>tdunning@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>camille</id>
- <name>Camille Fournier</name>
- <email>camille@apache.org</email>
- <timezone>-5</timezone>
- </developer>
- <developer>
- <id>phunt</id>
- <name>Patrick Hunt</name>
- <email>phunt@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>fpj</id>
- <name>Flavio Junqueira</name>
- <email>fpj@apache.org</email>
- <timezone>+0</timezone>
- </developer>
- <developer>
- <id>ivank</id>
- <name>Ivan Kelly</name>
- <email>ivank@apache.org</email>
- <timezone>+2</timezone>
- </developer>
- <developer>
- <id>mahadev</id>
- <name>Mahadev Konar</name>
- <email>mahadev@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>michim</id>
- <name>Michi Mutsuzaki</name>
- <email>michim@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>cnauroth</id>
- <name>Chris Nauroth</name>
- <email>cnauroth@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>breed</id>
- <name>Benjamin Reed</name>
- <email>breed@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>henry</id>
- <name>Henry Robinson</name>
- <email>henry@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>rgs</id>
- <name>Raul Gutierrez Segales</name>
- <email>rgs@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>rakeshr</id>
- <name>Rakesh Radhakrishnan</name>
- <email>rakeshr@apache.org</email>
- <timezone>+5:30</timezone>
- </developer>
- <developer>
- <id>hanm</id>
- <name>Michael Han</name>
- <email>hanm@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>gkesavan</id>
- <name>Giridharan Kesavan</name>
- <email>gkesavan@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>akornev</id>
- <name>Andrew Kornev</name>
- <email>akornev@apache.org</email>
- </developer>
- <developer>
- <id>shralex</id>
- <name>Alex Shraer</name>
- <email>shralex@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>thawan</id>
- <name>Thawan Kooburat</name>
- <email>thawan@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>hdeng</id>
- <name>Hongchao Deng</name>
- <email>hdeng@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>arshad</id>
- <name>Mohammad Arshad</name>
- <email>arshad@apache.org</email>
- <timezone>+5:30</timezone>
- </developer>
- <developer>
- <id>afine</id>
- <name>Abraham Fine</name>
- <email>afine@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>andor</id>
- <name>Andor Molnar</name>
- <email>andor@apache.org</email>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>lvfangmin</id>
- <name>Allan Lyu</name>
- <email>fangmin@apache.org</email>
- <timezone>-8</timezone>
- </developer>
- </developers>
- <profiles>
- <profile>
- <id>full-build</id>
- <modules>
- <module>zookeeper-contrib</module>
- </modules>
- </profile>
- <profile>
- <id>java-build</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- </profiles>
- <properties>
- <!-- maven properties -->
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <dependency.locations.enabled>false</dependency.locations.enabled>
- <surefire-forkcount>8</surefire-forkcount>
- <!-- dependency versions -->
- <slf4j.version>1.7.25</slf4j.version>
- <audience-annotations.version>0.5.0</audience-annotations.version>
- <junit.version>4.12</junit.version>
- <log4j.version>1.2.17</log4j.version>
- <mockito.version>1.8.5</mockito.version>
- <hamcrest.version>1.3</hamcrest.version>
- <commons-cli.version>1.2</commons-cli.version>
- <netty.version>4.1.29.Final</netty.version>
- <jetty.version>9.4.15.v20190215</jetty.version>
- <jackson.version>2.9.8</jackson.version>
- <json.version>1.1.1</json.version>
- <jline.version>2.11</jline.version>
- <kerby.version>1.1.0</kerby.version>
- <bouncycastle.version>1.60</bouncycastle.version>
- <commons-collections.version>3.2.2</commons-collections.version>
- <commons-lang.version>2.6</commons-lang.version>
- <dropwizard.version>3.2.5</dropwizard.version>
- <spotbugsannotations.version>3.1.9</spotbugsannotations.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-all</artifactId>
- <version>${hamcrest.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>${commons-collections.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>${commons-lang.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.yetus</groupId>
- <artifactId>audience-annotations</artifactId>
- <version>${audience-annotations.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>${commons-cli.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-core</artifactId>
- <version>${kerby.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-simplekdc</artifactId>
- <version>${kerby.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-config</artifactId>
- <version>${kerby.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>${bouncycastle.version}</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcpkix-jdk15on</artifactId>
- <version>${bouncycastle.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>${slf4j.version}</version>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>${log4j.version}</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-all</artifactId>
- <version>${mockito.version}</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>${netty.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-server</artifactId>
- <version>${jetty.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-servlet</artifactId>
- <version>${jetty.version}</version>
- </dependency>
- <dependency>
- <groupId>io.dropwizard.metrics</groupId>
- <artifactId>metrics-core</artifactId>
- <version>${dropwizard.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.json-simple</groupId>
- <artifactId>json-simple</artifactId>
- <version>${json.version}</version>
- </dependency>
- <dependency>
- <groupId>jline</groupId>
- <artifactId>jline</artifactId>
- <version>${jline.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.spotbugs</groupId>
- <artifactId>spotbugs-annotations</artifactId>
- <version>${spotbugsannotations.version}</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>properties-maven-plugin</artifactId>
- <version>1.0.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.0.1</version>
- <configuration>
- <doclint>none</doclint>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5.3</version>
- <configuration>
- <releaseProfiles>apache-release</releaseProfiles>
- <arguments>-Dmaven.test.skip.exec ${arguments}</arguments>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.22.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.8</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>3.1.1</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.6.0</version>
- </plugin>
- <plugin>
- <groupId>pl.project13.maven</groupId>
- <artifactId>git-commit-id-plugin</artifactId>
- <version>2.2.5</version>
- <inherited>false</inherited>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.0.0</version>
- </plugin>
- <plugin>
- <groupId>net.nicoulaj.maven.plugins</groupId>
- <artifactId>checksum-maven-plugin</artifactId>
- <version>1.8</version>
- </plugin>
- <plugin>
- <groupId>org.openclover</groupId>
- <artifactId>clover-maven-plugin</artifactId>
- <version>4.3.1</version>
- </plugin>
- <plugin>
- <groupId>com.github.spotbugs</groupId>
- <artifactId>spotbugs-maven-plugin</artifactId>
- <version>3.1.9</version>
- <configuration>
- <excludeFilterFile>excludeFindBugsFilter.xml</excludeFilterFile>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.owasp</groupId>
- <artifactId>dependency-check-maven</artifactId>
- <version>4.0.2</version>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>pl.project13.maven</groupId>
- <artifactId>git-commit-id-plugin</artifactId>
- <executions>
- <execution>
- <id>find-current-git-revision</id>
- <goals>
- <goal>revision</goal>
- </goals>
- <phase>validate</phase>
- </execution>
- </executions>
- <configuration>
- <skipPoms>false</skipPoms>
- <runOnlyOnce>true</runOnlyOnce>
- <failOnNoGitDirectory>false</failOnNoGitDirectory>
- <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
- <prefix>git</prefix>
- <verbose>false</verbose>
- <generateGitPropertiesFile>true</generateGitPropertiesFile>
- <generateGitPropertiesFilename>${project.basedir}/zookeeper-server/src/main/resources/git.properties</generateGitPropertiesFilename>
- <format>properties</format>
- <gitDescribe>
- <skip>false</skip>
- <always>false</always>
- <dirty>-dirty</dirty>
- </gitDescribe>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.openclover</groupId>
- <artifactId>clover-maven-plugin</artifactId>
- <configuration>
- <generateHtml>true</generateHtml>
- <generateXml>true</generateXml>
- <includes>
- <include>org/apache/zookeeper/**/*</include>
- </includes>
- <excludes>
- <exclude>org/apache/zookeeper/version/**/*</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <phase>pre-site</phase>
- <goals>
- <goal>instrument</goal>
- <goal>aggregate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <exportAntProperties>true</exportAntProperties>
- <target>
- <property environment="env"/>
- <exec executable="hostname" outputproperty="host.name"/>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>Jar Tests Package</id>
- <phase>package</phase>
- <goals>
- <goal>test-jar</goal>
- </goals>
- <configuration>
- <includes>
- <include>org/**</include>
- <include>META_INF/**</include>
- </includes>
- <skipIfEmpty>true</skipIfEmpty>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <!-- Maven's deploy plugin only creates checksums during the deployment of the jar artifacts to repo. -->
- <!-- We also want to sign tarballs. Nicoulaj's plugin is the recommended solution by the community. -->
- <groupId>net.nicoulaj.maven.plugins</groupId>
- <artifactId>checksum-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>artifacts</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <algorithms>
- <algorithm>SHA-512</algorithm>
- </algorithms>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.github.spotbugs</groupId>
- <artifactId>spotbugs-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.owasp</groupId>
- <artifactId>dependency-check-maven</artifactId>
- <configuration>
- <format>ALL</format>
- <failBuildOnCVSS>0</failBuildOnCVSS>
- <suppressionFiles>
- <suppressionsFile>owaspSuppressions.xml</suppressionsFile>
- </suppressionFiles>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>${project.basedir}src/main/java/resources</directory>
- <excludes>
- <exclude>**/*.*</exclude>
- </excludes>
- </resource>
- </resources>
- </build>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.openclover</groupId>
- <artifactId>clover-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
- </project>
|