| <?xml version="1.0"?> |
| <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> |
| <prerequisites> |
| <maven>3.0.4</maven> |
| </prerequisites> |
| <groupId>net.onrc.onos</groupId> |
| <artifactId>onos</artifactId> |
| <version>0.1.0</version> |
| <packaging>jar</packaging> |
| <name>ONOS</name> |
| <url>http://onlab.us/</url> |
| <repositories> |
| <repository> |
| <id>central</id> |
| <name>Maven Central repository</name> |
| <url>http://repo1.maven.org/maven2</url> |
| </repository> |
| <repository> |
| <id>maven-restlet</id> |
| <name>Public online Restlet repository</name> |
| <url>http://maven.restlet.org</url> |
| </repository> |
| </repositories> |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <powermock.version>1.5.1</powermock.version> |
| <restlet.version>2.1.4</restlet.version> |
| <cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version> |
| <findbugs-plugin.version>2.5.3</findbugs-plugin.version> |
| <findbugs.effort>Max</findbugs.effort> |
| <findbugs.excludeFilterFile>conf/findbugs/exclude.xml</findbugs.excludeFilterFile> |
| <checkstyle-plugin.version>2.12</checkstyle-plugin.version> |
| <!-- To publish javadoc to github, |
| uncomment com.github.github site-maven-plugin and |
| see https://github.com/OPENNETWORKINGLAB/ONOS/pull/425 |
| <github.global.server>github</github.global.server> |
| --> |
| <hazelcast.version>3.0.2</hazelcast.version> |
| </properties> |
| <build> |
| <plugins> |
| <plugin> |
| <!-- Note: the checkstyle configuration is also in the reporting section --> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${checkstyle-plugin.version}</version> |
| <configuration> |
| <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
| <suppressionsLocation> |
| ${basedir}/conf/checkstyle/onos_suppressions.xml |
| </suppressionsLocation> |
| <failsOnError>false</failsOnError> |
| <logViolationsToConsole>true</logViolationsToConsole> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate-checkstyle</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-install-plugin</artifactId> |
| <version>2.5.1</version> |
| <executions> |
| </executions> |
| </plugin> |
| <!-- guice maven plugin for dependency injection inside maven --> |
| <plugin> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>guice-maven-plugin</artifactId> |
| <version>2.11.0</version> |
| </plugin> |
| <!-- compile --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| <executions> |
| </executions> |
| </plugin> |
| <!-- test --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.16</version> |
| <configuration> |
| <excludes> |
| <!-- exclude all test cases for now --> |
| <!-- <exclude>**/storage/tests/StorageTest.java</exclude> --> |
| <!-- <exclude>**/test/*</exclude> --> |
| <!-- |
| <exclude>**/test/*</exclude> |
| <exclude>**/Test*.java</exclude> |
| <exclude>**/*Test.java</exclude> |
| <exclude>**/*TestCase.java</exclude> |
| --> |
| </excludes> |
| <argLine>-XX:MaxPermSize=256m</argLine> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| </configuration> |
| </plugin> |
| <!-- exec:java --> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>1.2.1</version> |
| <configuration> |
| <mainClass>net.onrc.onos.core.main.Main</mainClass> |
| </configuration> |
| <executions> |
| </executions> |
| </plugin> |
| <!--<plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.7</version> |
| <executions> |
| <execution> |
| <id>add-source</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>lib/gen-java</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin>--> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.9.1</version> |
| <configuration> |
| <charset>UTF-8</charset> |
| <locale>en</locale> |
| </configuration> |
| </plugin> |
| <!-- Remove me when we're sure that system test no longer need JaCoCo |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>0.6.3.201306030806</version> |
| <executions> |
| <execution> |
| <id>jacoco-initialize</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>jacoco-site</id> |
| <phase>package</phase> |
| <goals> |
| <goal>report</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| --> |
| <!-- |
| <plugin> |
| <groupId>com.github.github</groupId> |
| <artifactId>site-maven-plugin</artifactId> |
| <version>0.8</version> |
| <configuration> |
| <message>Creating site for ${project.version}</message> |
| <dryRun>true</dryRun> |
| <repositoryName>ONOS</repositoryName> |
| <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner> |
| <path>javadoc/${project.version}/</path> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>site</goal> |
| </goals> |
| <phase>site</phase> |
| </execution> |
| </executions> |
| </plugin> |
| --> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <configuration> |
| <descriptorRefs> |
| <descriptorRef>jar-with-dependencies</descriptorRef> |
| </descriptorRefs> |
| </configuration> |
| </plugin> |
| <plugin> |
| <!-- Using groovy script to set maven property ${hostname}. |
| This is a workaround to get hostname as a property inside pom file, |
| which current Maven does not provide. --> |
| <groupId>org.codehaus.gmaven</groupId> |
| <artifactId>groovy-maven-plugin</artifactId> |
| <version>2.0</version> |
| <executions> |
| <execution> |
| <phase>initialize</phase> |
| <goals> |
| <goal>execute</goal> |
| </goals> |
| <configuration> |
| <source> |
| project.properties["hostname"] = InetAddress.getLocalHost().getHostName() |
| </source> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <version>2.8</version> |
| <executions> |
| <execution> |
| <id>build-classpath</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>build-classpath</goal> |
| </goals> |
| <configuration> |
| <outputFile>${project.basedir}/.javacp.${hostname}</outputFile> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>${cobertura-maven-plugin.version}</version> |
| <configuration> |
| <instrumentation> |
| <ignores> |
| <ignore>org.slf4j.*</ignore> |
| </ignores> |
| <excludes> |
| <exclude>org/openflow/**/*.class</exclude> |
| <exclude>net/floodlightcontroller/**/web/**/*.class</exclude> |
| </excludes> |
| </instrumentation> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>clean</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <!-- Note: the findbugs configuration is also in the reporting section --> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs-plugin.version}</version> |
| <configuration> |
| <effort>${findbugs.effort}</effort> |
| <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate-findbugs</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <!-- |
| Note: Exclusion definition exists in multiple places. |
| - In file ${findbugs.excludeFilterFile} defined at top of pom.xml |
| - In file conf/checkstyle/onos_suppressions.xml |
| - maven-pmd-plugin configuration in pom.xml |
| (under build and reporting) |
| --> |
| <excludes> |
| <exclude>**/datastore/serializers/**</exclude> |
| <exclude>**/edu/stanford/**</exclude> |
| <exclude>**/net/floodlightcontroller/**</exclude> |
| <exclude>**/org/openflow/**</exclude> |
| </excludes> |
| <rulesets> |
| <ruleset>${basedir}/conf/pmd/onos_ruleset.xml</ruleset> |
| </rulesets> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate-pmd</id> |
| <phase>verify</phase> |
| <goals> |
| <!-- Uncomment this goal to make the build fail on pmd errors --> |
| <!--<goal>check</goal>--> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <!--This plugin's configuration is used to store Eclipse m2e settings |
| only. It has no influence on the Maven build itself. --> |
| <plugin> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>lifecycle-mapping</artifactId> |
| <version>1.0.0</version> |
| <configuration> |
| <lifecycleMappingMetadata> |
| <pluginExecutions> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId> |
| org.apache.maven.plugins |
| </groupId> |
| <artifactId> |
| maven-dependency-plugin |
| </artifactId> |
| <versionRange>[2.8,)</versionRange> |
| <goals> |
| <goal>build-classpath</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore></ignore> |
| </action> |
| </pluginExecution> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId>org.codehaus.gmaven</groupId> |
| <artifactId>groovy-maven-plugin</artifactId> |
| <versionRange>[2.0,)</versionRange> |
| <goals> |
| <goal>execute</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore></ignore> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| <!-- for getting visualization reporting --> |
| <reporting> |
| <excludeDefaults>true</excludeDefaults> |
| <outputDirectory>${project.build.directory}/site</outputDirectory> |
| <plugins> |
| <!-- |
| <plugin> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>guice-maven-plugin</artifactId> |
| <version>2.11.0</version> |
| </plugin> |
| --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-project-info-reports-plugin</artifactId> |
| <version>2.7</version> |
| <configuration> |
| <dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
| <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
| </configuration> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>dependencies</report> |
| <!--report>maven-emma-plugin</report--> |
| <report>scm</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.9.1</version> |
| <configuration> |
| <charset>UTF-8</charset> |
| <locale>en</locale> |
| </configuration> |
| </plugin> |
| <plugin> |
| <!-- Note: the checkstyle configuration is also in the build section --> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${checkstyle-plugin.version}</version> |
| <configuration> |
| <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
| <!-- |
| Note: Exclusion definition exists in multiple places. |
| - In file ${findbugs.excludeFilterFile} defined at top of pom.xml |
| - maven-checkstyle-plugin configuration in pom.xml |
| - maven-pmd-plugin configuration in pom.xml |
| (under build and reporting) |
| --> |
| <suppressionsLocation> |
| ${basedir}/conf/checkstyle/onos_suppressions.xml |
| </suppressionsLocation> |
| </configuration> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>checkstyle</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| <!-- Note: the findbugs configuration is also in the build section --> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs-plugin.version}</version> |
| <configuration> |
| <effort>${findbugs.effort}</effort> |
| <excludeFilterFile>${findbugs.excludeFilterFile}</excludeFilterFile> |
| <reportPlugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| </plugin> |
| </reportPlugins> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <!-- |
| Note: Exclusion definition exists in multiple places. |
| - In file ${findbugs.excludeFilterFile} defined at top of pom.xml |
| - In file conf/checkstyle/onos_suppressions.xml |
| - maven-pmd-plugin configuration in pom.xml |
| (under build and reporting) |
| --> |
| <excludes> |
| <exclude>**/datastore/serializers/**</exclude> |
| <exclude>**/edu/stanford/**</exclude> |
| <exclude>**/net/floodlightcontroller/**</exclude> |
| <exclude>**/org/openflow/**</exclude> |
| </excludes> |
| <rulesets> |
| <ruleset>${basedir}/conf/pmd/onos_ruleset.xml</ruleset> |
| </rulesets> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jxr-plugin</artifactId> |
| <version>2.4</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>${cobertura-maven-plugin.version}</version> |
| </plugin> |
| </plugins> |
| </reporting> |
| <dependencies> |
| <!-- ONOS's direct dependencies --> |
| <dependency> |
| <groupId>com.esotericsoftware.kryo</groupId> |
| <artifactId>kryo</artifactId> |
| <version>2.22</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java</artifactId> |
| <version>2.5.0</version> |
| </dependency> |
| <dependency> |
| <groupId>com.hazelcast</groupId> |
| <artifactId>hazelcast</artifactId> |
| <version>${hazelcast.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.hazelcast</groupId> |
| <artifactId>hazelcast-client</artifactId> |
| <version>${hazelcast.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.json-lib</groupId> |
| <artifactId>json-lib</artifactId> |
| <version>2.4</version> |
| <classifier>jdk15</classifier> |
| </dependency> |
| <dependency> |
| <groupId>org.restlet.jse</groupId> |
| <artifactId>org.restlet</artifactId> |
| <version>${restlet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.restlet.jse</groupId> |
| <artifactId>org.restlet.ext.slf4j</artifactId> |
| <version>${restlet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-core-asl</artifactId> |
| <version>1.9.13</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-mapper-asl</artifactId> |
| <version>1.9.13</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>1.0.13</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-configuration</groupId> |
| <artifactId>commons-configuration</artifactId> |
| <version>1.6</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>2.6</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>16.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-httpclient</groupId> |
| <artifactId>commons-httpclient</artifactId> |
| <version>3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| <version>3.4.5</version> |
| <scope>runtime</scope> |
| <!-- Following workaround exclusions can be removed, |
| when we're ready to switch to ZooKeeper 3.4.6 --> |
| <exclusions> |
| <exclusion> |
| <groupId>com.sun.jmx</groupId> |
| <artifactId>jmxri</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.sun.jdmk</groupId> |
| <artifactId>jmxtools</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>javax.jms</groupId> |
| <artifactId>jms</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- Floodlight's dependencies --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.5</version> |
| </dependency> |
| <dependency> |
| <groupId>org.restlet.jse</groupId> |
| <artifactId>org.restlet.ext.jackson</artifactId> |
| <version>${restlet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.restlet.jse</groupId> |
| <artifactId>org.restlet.ext.simple</artifactId> |
| <version>${restlet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.simpleframework</groupId> |
| <artifactId>simple</artifactId> |
| <version>4.1.21</version> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-all</artifactId> |
| <version>4.0.8.Final</version> |
| </dependency> |
| <dependency> |
| <groupId>args4j</groupId> |
| <artifactId>args4j</artifactId> |
| <version>2.0.25</version> |
| </dependency> |
| <dependency> |
| <groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
| <artifactId>concurrentlinkedhashmap-lru</artifactId> |
| <version>1.4</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.inject</groupId> |
| <artifactId>guice</artifactId> |
| <version>3.0</version> |
| </dependency> |
| <dependency> |
| <!-- dependency to old version of netty? --> |
| <groupId>org.jboss.netty</groupId> |
| <artifactId>netty</artifactId> |
| <version>3.2.7.Final</version> |
| </dependency> |
| <!-- Dependency for libraries used for testing --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.11</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-core</artifactId> |
| <version>1.3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-library</artifactId> |
| <version>1.3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>3.1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-module-junit4</artifactId> |
| <version>${powermock.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-api-easymock</artifactId> |
| <version>${powermock.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>2.1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.curator</groupId> |
| <artifactId>curator-framework</artifactId> |
| <version>2.4.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.curator</groupId> |
| <artifactId>curator-client</artifactId> |
| <version>2.4.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.curator</groupId> |
| <artifactId>curator-recipes</artifactId> |
| <version>2.4.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.curator</groupId> |
| <artifactId>curator-x-discovery</artifactId> |
| <version>2.4.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs-plugin.version}</version> |
| </dependency> |
| </dependencies> |
| <profiles> |
| <!-- Jenkins by default defines a property BUILD_NUMBER which is used to |
| enable the profile. --> |
| <profile> |
| <id>jenkins</id> |
| <activation> |
| <property> |
| <name>env.BUILD_NUMBER</name> |
| </property> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>${cobertura-maven-plugin.version}</version> |
| <configuration> |
| <formats> |
| <format>xml</format> |
| </formats> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>cobertura</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |