Skip to content

Commit

Permalink
hadoop_non_secure profile passes verify
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoontz committed Mar 22, 2012
1 parent 150c2fc commit daded8f
Showing 1 changed file with 33 additions and 8 deletions.
41 changes: 33 additions & 8 deletions pom.xml
Expand Up @@ -480,15 +480,15 @@ under the License.
<properties>
<hadoop.version>0.20.2</hadoop.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>${hadoop.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java/org/apache/giraph/hadoop</directory>
<excludes>
<exclude>BspTokenSelector.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
Expand All @@ -507,6 +507,31 @@ under the License.
<symbols>HADOOP_NON_SECURE</symbols>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<excludes>
<exclude>**/BspTokenSelector.java</exclude>
</excludes>
<source>${compileSource}</source>
<target>${compileSource}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<systemProperties>
<property>
<name>prop.jarLocation</name>
<value>target/munged/giraph-${project.version}-jar-with-dependencies.jar</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit daded8f

Please sign in to comment.