Updated Branches: refs/heads/master a39b2325e -> 3409c1670
SENTRY-108: Add eclipse formatter to pom.xml(Brock Noland via Shreepadma Venugopalan) Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/3409c167 Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/3409c167 Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/3409c167 Branch: refs/heads/master Commit: 3409c16703aeffde9122beca089ed72fc98d8a93 Parents: a39b232 Author: Shreepadma Venugopalan <[email protected]> Authored: Tue Feb 4 14:37:23 2014 -0800 Committer: Shreepadma Venugopalan <[email protected]> Committed: Tue Feb 4 14:37:23 2014 -0800 ---------------------------------------------------------------------- pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/3409c167/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3bab152..7db0088 100644 --- a/pom.xml +++ b/pom.xml @@ -55,6 +55,7 @@ limitations under the License. <!-- versions are in alphabetical order --> <ant.contrib.version>1.0b3</ant.contrib.version> <maven.antrun.plugin.version>1.7</maven.antrun.plugin.version> + <maven.eclipse.plugin.version>2.9</maven.eclipse.plugin.version> <maven.enforcer.plugin.version>1.3.1</maven.enforcer.plugin.version> <build.helper.maven.plugin.version>1.8</build.helper.maven.plugin.version> <commons.lang.version>2.6</commons.lang.version> @@ -299,6 +300,17 @@ limitations under the License. <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <version>${maven.eclipse.plugin.version}</version> + <configuration> + <downloadJavadocs>true</downloadJavadocs> + <downloadSources>true</downloadSources> + <workspaceActiveCodeStyleProfileName>GoogleStyle</workspaceActiveCodeStyleProfileName> + <workspaceCodeStylesURL>https://google-styleguide.googlecode.com/svn/trunk/eclipse-java-google-style.xml</workspaceCodeStylesURL> + </configuration> + </plugin> </plugins> <pluginManagement>
