| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| 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. |
| --> |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 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>org.apache.reef</groupId> |
| <version>0.15.1</version> |
| <packaging>pom</packaging> |
| <name>REEF</name> |
| <artifactId>reef-project</artifactId> |
| <description>Retainable Evaluator Execution Framework</description> |
| <url>http://reef.apache.org</url> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>16</version> |
| </parent> |
| |
| <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> |
| </license> |
| </licenses> |
| |
| <properties> |
| <reef.conf.dir>${project.build.directory}/conf</reef.conf.dir> |
| <reef.log.dir>${project.build.directory}/log</reef.log.dir> |
| <bundle.snappy>false</bundle.snappy> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <hadoop.version>2.6.0</hadoop.version> |
| <avro.version>1.7.7</avro.version> |
| <jetty.version>6.1.26</jetty.version> |
| <jackson.version>1.9.13</jackson.version> |
| <protobuf.version>2.5.0</protobuf.version> |
| <maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version> |
| <sevntu.checkstyle.plugin.version>1.20.0</sevntu.checkstyle.plugin.version> |
| <checkstyle.version>6.17</checkstyle.version> |
| <findbugs.version>3.0.2</findbugs.version> |
| <reflections.version>0.9.9-RC1</reflections.version> |
| <jsr305.version>3.0.1</jsr305.version> |
| <kryo.version>3.0.3</kryo.version> |
| <kryo-serializers.version>0.37</kryo-serializers.version> |
| <rootPath>${user.dir}</rootPath> |
| </properties> |
| |
| <scm> |
| <connection>scm:git:git@github.com:apache/reef</connection> |
| <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/reef</developerConnection> |
| <url>scm:git:git@github.com:apache/reef</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <developers> |
| </developers> |
| |
| <issueManagement> |
| <system>JIRA</system> |
| <url>https://issues.apache.org/jira/browse/REEF</url> |
| </issueManagement> |
| |
| <mailingLists> |
| <mailingList> |
| <name>Dev Mailing List</name> |
| <post>dev@reef.apache.org</post> |
| <subscribe>dev-subscribe@reef.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@reef.apache.org</unsubscribe> |
| <archive>http://mail-archives.apache.org/mod_mbox/reef-dev/</archive> |
| </mailingList> |
| </mailingLists> |
| |
| <prerequisites> |
| <maven>3.0</maven> |
| </prerequisites> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>sevntu-maven</id> |
| <name>sevntu-maven</name> |
| <url>http://sevntu-checkstyle.github.io/sevntu.checkstyle/maven2</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <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> |
| <showDeprecation>true</showDeprecation> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.19.1</version> |
| <configuration> |
| <argLine>-Xmx2g</argLine> |
| <systemProperties> |
| <property> |
| <name>org.apache.reef.runtime.local.folder</name> |
| <value>${project.build.directory}</value> |
| </property> |
| </systemProperties> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <version>3.4</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.8.2</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-install-plugin</artifactId> |
| <version>2.5.2</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-clean-plugin</artifactId> |
| <version>2.5</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.7</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.9.1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.10.3</version> |
| <configuration> |
| <show>public</show> |
| <linksource>true</linksource> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.4.1</version> |
| </plugin> |
| <plugin> |
| <!-- Create the property $buildNumber holding the current Git revision --> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>buildnumber-maven-plugin</artifactId> |
| <version>1.3</version> |
| <executions> |
| <execution> |
| <phase>validate</phase> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <doCheck>false</doCheck> |
| <doUpdate>false</doUpdate> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>1.3.2</version> |
| </plugin> |
| <plugin> |
| <!-- Add the default metadata to any JAR created --> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.5</version> |
| <configuration> |
| <archive> |
| <manifest> |
| <!--<Implementation-Title>${project.name}</Implementation-Title>--> |
| <!--<Implementation-Version>${project.version} ${buildNumber}</Implementation-Version>--> |
| <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| |
| </manifest> |
| </archive> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>com.mycila.maven-license-plugin</groupId> |
| <artifactId>maven-license-plugin</artifactId> |
| <version>1.9.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <version>2.3</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro-maven-plugin</artifactId> |
| <version>${avro.version}</version> |
| <executions> |
| <execution> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>schema</goal> |
| </goals> |
| <configuration> |
| <sourceDirectory>${project.basedir}/src/main/avro/</sourceDirectory> |
| <outputDirectory>${project.basedir}/target/generated-sources/avro/</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <version>2.9</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <version>0.11</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven.doxia</groupId> |
| <artifactId>doxia-core</artifactId> |
| <version>1.6</version> |
| <exclusions> |
| <exclusion> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <excludes> |
| <exclude>.gitattributes</exclude> |
| <exclude>.gitignore</exclude> |
| <exclude>.git/**</exclude> |
| <!-- Intellij idea project files --> |
| <exclude>lang/java/.idea/**</exclude> |
| <exclude>**/*.iml</exclude> |
| <exclude>**/target/**</exclude> |
| <!-- ReadMe files --> |
| <exclude>**/README.*</exclude> |
| <exclude>**/*.md</exclude> |
| <!-- The below are sometimes created during tests --> |
| <exclude>REEF_LOCAL_RUNTIME/**</exclude> |
| <exclude>REEF_MESOS_RUNTIME/**</exclude> |
| <exclude>REEF_STANDALONE_RUNTIME/**</exclude> |
| <!-- JVM error logs, especially troublesome on CI servers --> |
| <exclude>**/hs_err_*.log</exclude> |
| <!-- The Visual Studio and Nuget build files --> |
| <exclude>**/*.sln*</exclude> |
| <exclude>**/*.vcxproj*</exclude> |
| <exclude>**/*.csproj*</exclude> |
| <exclude>**/*.opensdf*</exclude> |
| <exclude>**/*.sdf*</exclude> |
| <exclude>**/*.snk</exclude> |
| <exclude>**/*.opendb</exclude> |
| <!-- The below are auto generated during the .Net build --> |
| <exclude>**/bin/**</exclude> |
| <exclude>**/obj/**</exclude> |
| <exclude>**/Release/**</exclude> |
| <exclude>**/Debug/**</exclude> |
| <exclude>**/TestResults/**</exclude> |
| <exclude>**/x64/**</exclude> |
| <exclude>**/StyleCop.Cache</exclude> |
| |
| <!-- NuGet dependencies downloaded as part of the build --> |
| <exclude>**/packages/**</exclude> |
| <!-- The below are auto generated files for serialization --> |
| <exclude>Org.Apache.REEF.Common/Protobuf/ReefProtocol/*</exclude> |
| <exclude>Org.Apache.REEF.Common/Avro/*</exclude> |
| <!-- The below are binary data files used in tests --> |
| <exclude>Org.Apache.REEF.Examples/ConfigFiles/*</exclude> |
| <exclude>Org.Apache.REEF.Tang.Tests/simpleConstructorJavaProto.bin</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <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> |
| <dependency> |
| <groupId>com.github.sevntu.checkstyle</groupId> |
| <artifactId>sevntu-checkstyle-maven-plugin</artifactId> |
| <version>${sevntu.checkstyle.plugin.version}</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <configLocation>lang/java/reef-common/src/main/resources/checkstyle.xml</configLocation> |
| <suppressionsLocation>lang/java/reef-common/src/main/resources/checkstyle-suppress.xml</suppressionsLocation> |
| <packageNamesLocation>lang/java/reef-common/src/main/resources/packagenames.xml</packageNamesLocation> |
| <failOnViolation>true</failOnViolation> |
| <format>xml</format> |
| <format>html</format> |
| <outputFile>${project.build.directory}/test/checkstyle-errors.xml</outputFile> |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs.version}</version> |
| <configuration> |
| <effort>Max</effort> |
| <threshold>Default</threshold> |
| <failOnError>true</failOnError> |
| <findbugsXmlOutputDirectory>${project.build.directory}/findbugs</findbugsXmlOutputDirectory> |
| <excludeFilterFile>${rootPath}/lang/java/reef-common/src/main/resources/findbugs-exclude.xml</excludeFilterFile> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>xml-maven-plugin</artifactId> |
| <version>1.0</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs.version}</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <transformationSets> |
| <transformationSet> |
| <dir>${project.build.directory}/findbugs</dir> |
| <includes> |
| <include>findbugsXml.xml</include> |
| </includes> |
| <outputDir>${project.build.directory}/findbugs</outputDir> |
| <stylesheet>default.xsl</stylesheet> |
| <fileMappers> |
| <!-- Configures the file extension of the output files. --> |
| <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper"> |
| <targetExtension>.html</targetExtension> |
| </fileMapper> |
| </fileMappers> |
| </transformationSet> |
| </transformationSets> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>2.7</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.5</version> |
| <configuration> |
| <targetJdk>1.7</targetJdk> |
| <excludes> |
| <exclude>*/target/generated-sources/*</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| <showDeprecation>true</showDeprecation> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <configuration> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencyManagement> |
| <dependencies> |
| <!-- Tang and Wake --> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>tang</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>wake</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!-- Testing --> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>reef-tests</artifactId> |
| <type>test-jar</type> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.11</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>1.9.5</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-all</artifactId> |
| <version>1.9.5</version> |
| </dependency> |
| |
| <!-- Protocol Buffers --> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java</artifactId> |
| <version>${protobuf.version}</version> |
| </dependency> |
| <!-- End of Protocol Buffers --> |
| |
| <!-- HADOOP --> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-common</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-common</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn</artifactId> |
| <version>${hadoop.version}</version> |
| <type>pom</type> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-hdfs</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-client</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-minicluster</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-api</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client-core</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jcl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- END OF HADOOP --> |
| |
| <!-- Apache Commons --> |
| <dependency> |
| <groupId>commons-cli</groupId> |
| <artifactId>commons-cli</artifactId> |
| <version>1.2</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-configuration</groupId> |
| <artifactId>commons-configuration</artifactId> |
| <version>1.10</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-math3</artifactId> |
| <version>3.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <version>3.3.2</version> |
| </dependency> |
| <!-- End of Apache Commons --> |
| |
| <!-- AVRO --> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro</artifactId> |
| <version>${avro.version}</version> |
| </dependency> |
| <!-- End of AVRO --> |
| |
| <!-- JETTY --> |
| <dependency> |
| <groupId>org.mortbay.jetty</groupId> |
| <artifactId>jetty</artifactId> |
| <version>${jetty.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mortbay.jetty</groupId> |
| <artifactId>jetty-util</artifactId> |
| <version>${jetty.version}</version> |
| </dependency> |
| <!-- End of JETTY --> |
| <dependency> |
| <groupId>net.jcip</groupId> |
| <artifactId>jcip-annotations</artifactId> |
| <version>1.0</version> |
| </dependency> |
| |
| <!-- SLF4J --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| <version>1.7.7</version> |
| </dependency> |
| <!-- End of SLF4J --> |
| |
| |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-all</artifactId> |
| <version>4.0.21.Final</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>cglib</groupId> |
| <artifactId>cglib</artifactId> |
| <version>3.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>javax.inject</groupId> |
| <artifactId>javax.inject</artifactId> |
| <version>1</version> |
| </dependency> |
| |
| <!-- Microsoft Azure libraries --> |
| <dependency> |
| <groupId>com.microsoft.windowsazure.storage</groupId> |
| <artifactId>microsoft-windowsazure-storage-sdk</artifactId> |
| <version>0.5.0</version> |
| </dependency> |
| <!-- End of Microsoft Azure libraries --> |
| |
| <!-- Apache HTTP components --> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>4.3.4</version> |
| </dependency> |
| <!-- End of Apache HTTP components --> |
| |
| |
| <!-- Jackson --> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-mapper-asl</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-core-asl</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <!-- End of Jackson --> |
| |
| <dependency> |
| <groupId>org.apache.mesos</groupId> |
| <artifactId>mesos</artifactId> |
| <version>0.25.0</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <modules> |
| <module>lang/cs</module> |
| <module>lang/java/reef-annotations</module> |
| <module>lang/java/reef-applications</module> |
| <module>lang/java/reef-bridge-client</module> |
| <module>lang/java/reef-bridge-java</module> |
| <module>lang/java/reef-checkpoint</module> |
| <module>lang/java/reef-common</module> |
| <module>lang/java/reef-examples</module> |
| <module>lang/java/reef-examples-clr</module> |
| <module>lang/java/reef-examples-hdinsight</module> |
| <module>lang/java/reef-io</module> |
| <module>lang/java/reef-poison</module> |
| <module>lang/java/reef-runtime-hdinsight</module> |
| <module>lang/java/reef-runtime-local</module> |
| <module>lang/java/reef-runtime-yarn</module> |
| <module>lang/java/reef-runtime-mesos</module> |
| <module>lang/java/reef-runtime-multi</module> |
| <module>lang/java/reef-runtime-standalone</module> |
| <module>lang/java/reef-tang</module> |
| <module>lang/java/reef-tests</module> |
| <module>lang/java/reef-wake</module> |
| <module>lang/java/reef-webserver</module> |
| <module>lang/java/reef-utils-hadoop</module> |
| <module>lang/java/reef-utils</module> |
| <module>website</module> |
| </modules> |
| |
| <profiles> |
| <profile> |
| <id>log</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <forkMode>pertest</forkMode> |
| <systemProperties> |
| <property> |
| <name>java.util.logging.config.class</name> |
| <value>org.apache.reef.util.logging.Config</value> |
| </property> |
| </systemProperties> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>code-quality</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.mycila.maven-license-plugin</groupId> |
| <artifactId>maven-license-plugin</artifactId> |
| <configuration> |
| <header>LICENSE_HEADER.txt</header> |
| <strictCheck>true</strictCheck> |
| <excludes> |
| <exclude>LICENSE.txt</exclude> |
| <exclude>NOTICES.txt</exclude> |
| <exclude>README.*</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>validate</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${maven-checkstyle-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>validate</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| <goal>checkstyle</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>analyze-compile</id> |
| <phase>compile</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <configuration> |
| <instrumentation> |
| <excludes> |
| <exclude>org/apache/reef/examples/**/*.class</exclude> |
| <exclude>org/apache/reef/tang/examples/**/*.class</exclude> |
| <exclude>org/apache/reef/vortex/examples/**/*.class</exclude> |
| <exclude>org/apache/reef/wake/examples/**/*.class</exclude> |
| </excludes> |
| </instrumentation> |
| <aggregate>true</aggregate> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>clean</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| </project> |