| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <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"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.aries</groupId> |
| <artifactId>parent</artifactId> |
| <version>3.0.1-SNAPSHOT</version> |
| <relativePath>../parent/pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.apache.aries.tutorials</groupId> |
| <artifactId>tutorials</artifactId> |
| <version>0.1-SNAPSHOT</version> |
| <name>Apache Aries Tutorials</name> |
| <packaging>pom</packaging> |
| |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/aries.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf?p=aries.git;a=summary</url> |
| </scm> |
| |
| <properties> |
| <aries.skip.version.check>true</aries.skip.version.check> |
| |
| <blueprint-maven-plugin-annotation.version>1.3.0</blueprint-maven-plugin-annotation.version> |
| <blueprint-maven-plugin.version>1.10.0</blueprint-maven-plugin.version> |
| <jansi.version>2.4.2</jansi.version> |
| <javax.inject.version>1</javax.inject.version> |
| <jline.version>3.30.6</jline.version> |
| <org.apache.aries.blueprint.api.version>1.0.1</org.apache.aries.blueprint.api.version> |
| <org.apache.aries.blueprint.core.version>1.10.3</org.apache.aries.blueprint.core.version> |
| <org.apache.aries.proxy.version>1.1.14</org.apache.aries.proxy.version> |
| <org.apache.aries.quiesce.api.version>1.0.0</org.apache.aries.quiesce.api.version> |
| <org.apache.aries.quiesce.manager.version>1.0.0</org.apache.aries.quiesce.manager.version> |
| <org.apache.aries.util.version>1.1.3</org.apache.aries.util.version> |
| <org.apache.felix.fileinstall.version>3.7.4</org.apache.felix.fileinstall.version> |
| <org.apache.felix.gogo.command.version>1.1.2</org.apache.felix.gogo.command.version> |
| <org.apache.felix.gogo.jline.version>1.1.8</org.apache.felix.gogo.jline.version> |
| <org.apache.felix.gogo.runtime.version>1.1.6</org.apache.felix.gogo.runtime.version> |
| <org.eclipse.equinox.console.version>1.4.1100</org.eclipse.equinox.console.version> |
| <org.eclipse.osgi.version>3.23.100</org.eclipse.osgi.version> |
| <org.osgi.version>3.0.0</org.osgi.version> |
| <pax-logging.version>2.2.10</pax-logging.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.platform</groupId> |
| <artifactId>org.eclipse.osgi</artifactId> |
| <version>${org.eclipse.osgi.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.platform</groupId> |
| <artifactId>org.eclipse.equinox.console</artifactId> |
| <version>${org.eclipse.equinox.console.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.fusesource.jansi</groupId> |
| <artifactId>jansi</artifactId> |
| <version>${jansi.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jline</groupId> |
| <artifactId>jline</artifactId> |
| <version>${jline.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.gogo.command</artifactId> |
| <version>${org.apache.felix.gogo.command.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.gogo.jline</artifactId> |
| <version>${org.apache.felix.gogo.jline.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| <version>${org.apache.felix.gogo.runtime.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.fileinstall</artifactId> |
| <version>${org.apache.felix.fileinstall.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ops4j.pax.logging</groupId> |
| <artifactId>pax-logging-api</artifactId> |
| <version>${pax-logging.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ops4j.pax.logging</groupId> |
| <artifactId>pax-logging-log4j2</artifactId> |
| <version>${pax-logging.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.blueprint</groupId> |
| <artifactId>org.apache.aries.blueprint.core</artifactId> |
| <version>${org.apache.aries.blueprint.core.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.blueprint</groupId> |
| <artifactId>org.apache.aries.blueprint.api</artifactId> |
| <version>${org.apache.aries.blueprint.api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries</groupId> |
| <artifactId>org.apache.aries.util</artifactId> |
| <version>${org.apache.aries.util.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.proxy</groupId> |
| <artifactId>org.apache.aries.proxy</artifactId> |
| <version>${org.apache.aries.proxy.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.quiesce</groupId> |
| <artifactId>org.apache.aries.quiesce.api</artifactId> |
| <version>${org.apache.aries.quiesce.api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.quiesce</groupId> |
| <artifactId>org.apache.aries.quiesce.manager</artifactId> |
| <version>${org.apache.aries.quiesce.manager.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.blueprint</groupId> |
| <artifactId>blueprint-maven-plugin-annotation</artifactId> |
| <version>${blueprint-maven-plugin-annotation.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi</artifactId> |
| <version>${org.osgi.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.inject</groupId> |
| <artifactId>javax.inject</artifactId> |
| <version>${javax.inject.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.aries.blueprint</groupId> |
| <artifactId>blueprint-maven-plugin</artifactId> |
| <version>${blueprint-maven-plugin.version}</version> |
| <executions> |
| <execution> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>add-resource-dir</goal> |
| <goal>blueprint-generate</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <modules> |
| <module>blueprint</module> |
| </modules> |
| |
| </project> |