Keycloak
1<?xml version="1.0"?>
2<!--
3~ Copyright 2016 Red Hat, Inc. and/or its affiliates
4~ and other contributors as indicated by the @author tags.
5~
6~ Licensed under the Apache License, Version 2.0 (the "License");
7~ you may not use this file except in compliance with the License.
8~ You may obtain a copy of the License at
9~
10~ http://www.apache.org/licenses/LICENSE-2.0
11~
12~ Unless required by applicable law or agreed to in writing, software
13~ distributed under the License is distributed on an "AS IS" BASIS,
14~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15~ See the License for the specific language governing permissions and
16~ limitations under the License.
17-->
18
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"20xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">21<parent>22<artifactId>keycloak-parent</artifactId>23<groupId>org.keycloak</groupId>24<version>999.0.0-SNAPSHOT</version>25<relativePath>../pom.xml</relativePath>26</parent>27<modelVersion>4.0.0</modelVersion>28
29<artifactId>keycloak-testsuite-pom</artifactId>30<packaging>pom</packaging>31<name>Keycloak TestSuite</name>32<description />33
34<build>35<plugins>36<plugin>37<groupId>org.apache.maven.plugins</groupId>38<artifactId>maven-javadoc-plugin</artifactId>39<configuration>40<skip>true</skip>41</configuration>42</plugin>43<plugin>44<groupId>org.apache.maven.plugins</groupId>45<artifactId>maven-deploy-plugin</artifactId>46<configuration>47<skip>true</skip>48</configuration>49</plugin>50</plugins>51</build>52<modules>53<module>db-allocator-plugin</module>54<module>integration-arquillian</module>55<module>model</module>56<module>utils</module>57</modules>58
59<profiles>60<profile>61<id>deploy-testsuite</id>62<activation>63<property>64<name>deployTestsuite</name>65</property>66</activation>67<build>68<plugins>69<plugin>70<groupId>org.apache.maven.plugins</groupId>71<artifactId>maven-deploy-plugin</artifactId>72<configuration>73<skip>false</skip>74</configuration>75</plugin>76</plugins>77</build>78</profile>79</profiles>80
81</project>82