Keycloak
99 строк · 3.7 Кб
1<!--
2~ Copyright 2016 Red Hat, Inc. and/or its affiliates
3~ and other contributors as indicated by the @author tags.
4~
5~ Licensed under the Apache License, Version 2.0 (the "License");
6~ you may not use this file except in compliance with the License.
7~ You may obtain a copy of the License at
8~
9~ http://www.apache.org/licenses/LICENSE-2.0
10~
11~ Unless required by applicable law or agreed to in writing, software
12~ distributed under the License is distributed on an "AS IS" BASIS,
13~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14~ See the License for the specific language governing permissions and
15~ limitations under the License.
16-->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">19<modelVersion>4.0.0</modelVersion>20<parent>21<artifactId>keycloak-distribution-parent</artifactId>22<groupId>org.keycloak</groupId>23<version>999.0.0-SNAPSHOT</version>24</parent>25
26<artifactId>keycloak-distribution-maven-plugins-parent</artifactId>27<packaging>pom</packaging>28<name>Keycloak Distribution Maven Plugins Parent</name>29
30<dependencies>31<dependency>32<groupId>org.codehaus.groovy</groupId>33<artifactId>groovy-all</artifactId>34<version>2.4.12</version>35</dependency>36<dependency>37<groupId>org.apache.maven</groupId>38<artifactId>maven-plugin-api</artifactId>39<version>3.3.9</version>40<scope>provided</scope>41</dependency>42<dependency>43<groupId>org.apache.maven</groupId>44<artifactId>maven-core</artifactId>45<version>3.3.9</version>46<scope>provided</scope>47</dependency>48<dependency>49<groupId>org.apache.maven.plugin-tools</groupId>50<artifactId>maven-plugin-annotations</artifactId>51<version>3.4</version>52<scope>provided</scope>53</dependency>54</dependencies>55
56<modules>57<module>licenses-processor</module>58</modules>59
60<build>61<pluginManagement>62<plugins>63<plugin>64<groupId>org.codehaus.gmavenplus</groupId>65<artifactId>gmavenplus-plugin</artifactId>66<version>1.6</version>67<executions>68<execution>69<id>compile-groovy</id>70<goals>71<goal>addSources</goal>72<goal>addTestSources</goal>73<goal>generateStubs</goal>74<goal>compile</goal>75<goal>removeStubs</goal>76<goal>generateTestStubs</goal>77<goal>compileTests</goal>78<goal>removeTestStubs</goal>79</goals>80</execution>81</executions>82</plugin>83<plugin>84<groupId>org.apache.maven.plugins</groupId>85<artifactId>maven-plugin-plugin</artifactId>86<executions>87<execution>88<id>generate-descriptor</id>89<goals>90<goal>descriptor</goal>91</goals>92</execution>93</executions>94</plugin>95</plugins>96</pluginManagement>97</build>98
99</project>100