Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. 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, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <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"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>gogo-parent</artifactId> |
| 23 | <version>0.6.0</version> |
| 24 | <relativePath>../gogo-parent/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Gogo JLine Shell</name> |
| 29 | <artifactId>org.apache.felix.gogo.jline</artifactId> |
Guillaume Nodet | 0a96116 | 2016-03-21 16:54:27 +0000 | [diff] [blame] | 30 | <version>0.1.0-SNAPSHOT</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 31 | <properties> |
| 32 | <!-- Skip because of NPE --> |
| 33 | <animal.sniffer.skip>true</animal.sniffer.skip> |
Guillaume Nodet | 36d1c79 | 2016-03-21 16:53:21 +0000 | [diff] [blame] | 34 | <felix.java.version>8</felix.java.version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 35 | </properties> |
Guillaume Nodet | b5038f0 | 2016-03-21 17:00:38 +0000 | [diff] [blame^] | 36 | <repositories> |
| 37 | <repository> |
| 38 | <id>ossrh.sonatype.snapshots.deploy</id> |
| 39 | <name>OSSRH snapshot repository</name> |
| 40 | <url>https://oss.sonatype.org/content/groups/public/</url> |
| 41 | <releases> |
| 42 | <enabled>false</enabled> |
| 43 | </releases> |
| 44 | <snapshots> |
| 45 | <enabled>true</enabled> |
| 46 | </snapshots> |
| 47 | </repository> |
| 48 | <repository> |
| 49 | <id>fusesource.snapshots</id> |
| 50 | <url>https://repository.jboss.org/nexus/content/repositories/fs-snapshots</url> |
| 51 | <releases> |
| 52 | <enabled>false</enabled> |
| 53 | </releases> |
| 54 | <snapshots> |
| 55 | <enabled>true</enabled> |
| 56 | </snapshots> |
| 57 | </repository> |
| 58 | </repositories> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 59 | <dependencies> |
| 60 | <dependency> |
| 61 | <groupId>org.osgi</groupId> |
| 62 | <artifactId>org.osgi.core</artifactId> |
Guillaume Nodet | 2a8e245 | 2016-03-21 17:00:34 +0000 | [diff] [blame] | 63 | <version>4.3.1</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 64 | <scope>provided</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.osgi</groupId> |
| 68 | <artifactId>org.osgi.compendium</artifactId> |
Guillaume Nodet | 2a8e245 | 2016-03-21 17:00:34 +0000 | [diff] [blame] | 69 | <version>4.3.1</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.apache.felix</groupId> |
| 74 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Guillaume Nodet | 90e8165 | 2016-03-21 16:54:36 +0000 | [diff] [blame] | 75 | <version>0.17.0-SNAPSHOT</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>jline</groupId> |
| 79 | <artifactId>jline</artifactId> |
| 80 | <version>3.0.0-SNAPSHOT</version> |
| 81 | <optional>true</optional> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.apache.sshd</groupId> |
| 85 | <artifactId>sshd-core</artifactId> |
Guillaume Nodet | a3762cb | 2016-03-21 17:00:25 +0000 | [diff] [blame] | 86 | <version>1.2.0</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 87 | <optional>true</optional> |
Guillaume Nodet | a3762cb | 2016-03-21 17:00:25 +0000 | [diff] [blame] | 88 | <scope>test</scope> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | </dependencies> |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.felix</groupId> |
| 95 | <artifactId>maven-bundle-plugin</artifactId> |
Guillaume Nodet | 0a96116 | 2016-03-21 16:54:27 +0000 | [diff] [blame] | 96 | <version>3.0.0</version> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 97 | <extensions>true</extensions> |
| 98 | <configuration> |
| 99 | <instructions> |
| 100 | <Export-Package> |
Guillaume Nodet | a3762cb | 2016-03-21 17:00:25 +0000 | [diff] [blame] | 101 | org.apache.felix.gogo.jline |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 102 | </Export-Package> |
| 103 | <Import-Package> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 104 | * |
| 105 | </Import-Package> |
Guillaume Nodet | 9743103 | 2016-03-21 16:53:06 +0000 | [diff] [blame] | 106 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 107 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 108 | <Bundle-Activator>org.apache.felix.gogo.jline.Activator</Bundle-Activator> |
| 109 | <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
| 110 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
| 111 | <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders> |
| 112 | </instructions> |
| 113 | </configuration> |
| 114 | </plugin> |
| 115 | <plugin> |
| 116 | <groupId>org.apache.rat</groupId> |
| 117 | <artifactId>apache-rat-plugin</artifactId> |
| 118 | <configuration> |
| 119 | <excludes> |
| 120 | <param>src/main/resources/motd</param> |
| 121 | </excludes> |
| 122 | </configuration> |
| 123 | </plugin> |
| 124 | <plugin> |
| 125 | <artifactId>maven-compiler-plugin</artifactId> |
| 126 | <configuration> |
| 127 | <source>1.8</source> |
| 128 | <target>1.8</target> |
| 129 | </configuration> |
| 130 | </plugin> |
| 131 | </plugins> |
| 132 | </build> |
| 133 | </project> |