This is an automated email from the ASF dual-hosted git repository. vel pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 3145c50365e91a741b1dfaa994afdb964d36799b Author: Bryan Bende <[email protected]> AuthorDate: Tue Oct 8 10:28:20 2019 -0400 RANGER-2608 Adding profile to build security-admin assembly Signed-off-by: Velmurugan Periasamy <[email protected]> --- pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pom.xml b/pom.xml index 6c94995..2140028 100644 --- a/pom.xml +++ b/pom.xml @@ -304,6 +304,26 @@ </build> </profile> <profile> + <id>ranger-admin</id> + <modules> + <module>agents-common</module> + <module>security-admin</module> + </modules> + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.2-beta-5</version> + <configuration> + <descriptors> + <descriptor>src/main/assembly/admin-web.xml</descriptor> + </descriptors> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>ranger-hdfs-plugin</id> <modules> <module>agents-audit</module>
