|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright (c) 2009-present the original author or authors. |
| 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" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <groupId>com.planet57.gshell.commands</groupId> |
| 26 | + <artifactId>gshell-commands</artifactId> |
| 27 | + <version>3.0.0-SNAPSHOT</version> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <artifactId>gshell-jline</artifactId> |
| 31 | + <name>${project.groupId}:${project.artifactId}</name> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>com.planet57.gshell</groupId> |
| 36 | + <artifactId>gshell-core</artifactId> |
| 37 | + <scope>provided</scope> |
| 38 | + </dependency> |
| 39 | + |
| 40 | + <dependency> |
| 41 | + <groupId>com.planet57.gshell</groupId> |
| 42 | + <artifactId>gshell-testharness</artifactId> |
| 43 | + <scope>test</scope> |
| 44 | + </dependency> |
| 45 | + </dependencies> |
| 46 | + |
| 47 | +</project> |
| 48 | + |
0 commit comments