|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<!-- |
| 4 | + * See the NOTICE file distributed with this work for additional |
| 5 | + * information regarding copyright ownership. |
| 6 | + * |
| 7 | + * This is free software; you can redistribute it and/or modify it |
| 8 | + * under the terms of the GNU Lesser General Public License as |
| 9 | + * published by the Free Software Foundation; either version 2.1 of |
| 10 | + * the License, or (at your option) any later version. |
| 11 | + * |
| 12 | + * This software is distributed in the hope that it will be useful, |
| 13 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | + * Lesser General Public License for more details. |
| 16 | + * |
| 17 | + * You should have received a copy of the GNU Lesser General Public |
| 18 | + * License along with this software; if not, write to the Free |
| 19 | + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 20 | + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. |
| 21 | +--> |
| 22 | + |
| 23 | +<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"> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + <parent> |
| 26 | + <groupId>org.xwiki.contrib.cristal.integration</groupId> |
| 27 | + <artifactId>cristal-integration</artifactId> |
| 28 | + <version>1.2.0-SNAPSHOT</version> |
| 29 | + </parent> |
| 30 | + <artifactId>cristal-integration-headless-rest-server</artifactId> |
| 31 | + <packaging>jar</packaging> |
| 32 | + <name>Cristal Integration - Headless - REST Server</name> |
| 33 | + <description>Service to allow connection from an external Cristal instance through a RESTful API</description> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <xwiki.extension.name>Cristal Integration - Headless - REST Server</xwiki.extension.name> |
| 37 | + <xwiki.extension.category>application</xwiki.extension.category> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.xwiki.contrib.cristal.integration</groupId> |
| 43 | + <artifactId>cristal-integration-rest-api</artifactId> |
| 44 | + <version>${project.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.xwiki.platform</groupId> |
| 48 | + <artifactId>xwiki-platform-rest-api</artifactId> |
| 49 | + <version>${platform.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.xwiki.platform</groupId> |
| 53 | + <artifactId>xwiki-platform-rest-server</artifactId> |
| 54 | + <version>${platform.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.xwiki.platform</groupId> |
| 58 | + <artifactId>xwiki-platform-oldcore</artifactId> |
| 59 | + <version>${platform.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.xwiki.contrib.oidc</groupId> |
| 63 | + <artifactId>oidc-provider</artifactId> |
| 64 | + <version>${oidc.version}</version> |
| 65 | + <scope>runtime</scope> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | +</project> |
0 commit comments