Keycloak
81 строка · 2.7 Кб
1<?xml version="1.0"?>
2<!--
3~ Copyright 2019 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"20xmlns="http://maven.apache.org/POM/4.0.0"21xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">22<parent>23<artifactId>keycloak-testsuite-pom</artifactId>24<groupId>org.keycloak</groupId>25<version>999.0.0-SNAPSHOT</version>26</parent>27<modelVersion>4.0.0</modelVersion>28
29<artifactId>db-allocator-plugin</artifactId>30<packaging>maven-plugin</packaging>31<name>DB Allocator Plugin</name>32
33<properties>34<maven.version>3.3.9</maven.version>35</properties>36
37<dependencies>38<dependency>39<groupId>org.apache.maven</groupId>40<artifactId>maven-plugin-api</artifactId>41<version>${maven.version}</version>42</dependency>43<dependency>44<groupId>org.apache.maven.plugin-tools</groupId>45<artifactId>maven-plugin-annotations</artifactId>46<version>3.4</version>47<scope>provided</scope>48</dependency>49<dependency>50<groupId>org.apache.maven</groupId>51<artifactId>maven-core</artifactId>52<version>${maven.version}</version>53<scope>provided</scope>54</dependency>55<dependency>56<groupId>org.jboss.resteasy</groupId>57<artifactId>resteasy-client</artifactId>58</dependency>59<dependency>60<groupId>commons-io</groupId>61<artifactId>commons-io</artifactId>62<version>2.11.0</version>63</dependency>64
65<dependency>66<groupId>junit</groupId>67<artifactId>junit</artifactId>68<scope>test</scope>69</dependency>70</dependencies>71
72<build>73<plugins>74<plugin>75<groupId>org.apache.maven.plugins</groupId>76<artifactId>maven-plugin-plugin</artifactId>77<version>3.6.0</version>78</plugin>79</plugins>80</build>81</project>82