blob: d0a9594f068c451b3d563665f04dd8d0bebe69b3 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--#======================================================================= -->
<!--# Copyright (c) 2012, 2014 - C4biz Softwares ME, Loetz GmbH&Co.KG (69115 Heidelberg, Germany) -->
<!--# All rights reserved. This program and the accompanying materials -->
<!--# are made available under the terms of the Eclipse Public License 2.0 -->
<!--# which accompanies this distribution, and is available at -->
<!--# https://www.eclipse.org/legal/epl-2.0/ -->
<!--# -->
<!--# SPDX-License-Identifier: EPL-2.0 -->
<!--# -->
<!--# Contributors: -->
<!--# Cristiano GaviĆ£o (C4biz)- 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.osbp.releng.maven</groupId>
<artifactId>org.eclipse.osbp.releng.maven</artifactId>
<version>0.9.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.eclipse.osbp.releng.maven.licenses</artifactId>
<scm>
<connection>${osbp.scm.connection}</connection>
<developerConnection>${osbp.scm.connection.dev}</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<!-- All dependencies below are used to build the third-party missing license
file. This file will be shared by all other OS.bee projects. -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
<scope>provided</scope>
</dependency>
<!-- <dependency> -->
<!-- <groupId>org.eclipse.osbp.releng.maven</groupId> -->
<!-- <artifactId>org.eclipse.osbp.releng.maven.fpom.equinox.luna</artifactId> -->
<!-- <version>0.12.5-SNAPSHOT</version> -->
<!-- <scope>provided</scope> -->
<!-- <type>pom</type> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.eclipse.osbp.releng.maven</groupId> -->
<!-- <artifactId>org.eclipse.osbp.releng.maven.fpom.node</artifactId> -->
<!-- <version>0.12.5-SNAPSHOT</version> -->
<!-- <type>pom</type> -->
<!-- <scope>provided</scope> -->
<!-- </dependency> -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.annotation</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>update-license-files</id>
<inherited>false</inherited>
<configuration>
<deployMissingFile>true</deployMissingFile>
<useMissingFile>true</useMissingFile>
<useRepositoryMissingFiles>false</useRepositoryMissingFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>