| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| /*=============================================================================# |
| # Copyright (c) 2020, 2021 Stephan Wahlbrink and others. |
| # |
| # This program and the accompanying materials are made available under the |
| # terms of the Apache License, Version 2.0 which is available at |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # SPDX-License-Identifier: Apache-2.0 |
| # |
| # Contributors: |
| # Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation |
| #=============================================================================*/ |
| --> |
| |
| <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/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.eclipse.statet.rj</groupId> |
| <artifactId>rj.core</artifactId> |
| <version>4.5.0-SNAPSHOT</version> |
| </parent> |
| <artifactId>org.eclipse.statet.rj.server.rpkg</artifactId> |
| <name>StatET RJ - Server - R Package Skeleton + API (Incubation)</name> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.statet.jcommons</groupId> |
| <artifactId>org.eclipse.statet.jcommons.util</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.eclipse.statet.rj</groupId> |
| <artifactId>org.eclipse.statet.rj.data</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.statet.rj</groupId> |
| <artifactId>org.eclipse.statet.rj.server</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| </project> |