2009-11-19 12:16:20 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-08-25 04:42:50 -04:00
|
|
|
<!--
|
|
|
|
~ 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.
|
|
|
|
-->
|
2011-10-18 08:19:44 -04:00
|
|
|
<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">
|
2009-11-19 12:16:20 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>archiva-scheduler</artifactId>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2014-03-25 22:40:25 -04:00
|
|
|
<version>2.0.2-SNAPSHOT</version>
|
2009-11-19 12:16:20 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-scheduler-api</artifactId>
|
2011-11-22 09:17:04 -05:00
|
|
|
<packaging>bundle</packaging>
|
2011-09-01 13:09:08 -04:00
|
|
|
<name>Archiva Scheduler :: API</name>
|
2009-11-19 12:16:20 -05:00
|
|
|
<dependencies>
|
2011-09-13 08:12:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-admin-api</artifactId>
|
|
|
|
</dependency>
|
2009-11-19 12:16:20 -05:00
|
|
|
<dependency>
|
2012-04-13 17:39:10 -04:00
|
|
|
<groupId>org.apache.archiva.redback.components</groupId>
|
2011-05-25 11:31:30 -04:00
|
|
|
<artifactId>spring-taskqueue</artifactId>
|
2009-11-19 12:16:20 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2011-11-22 09:17:04 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.apache.archiva.scheduler.api</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Export-Package>
|
|
|
|
org.apache.archiva.scheduler;version=${project.version}
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>
|
2012-04-13 18:10:42 -04:00
|
|
|
org.apache.archiva.redback.components.taskqueue,
|
2013-12-17 02:28:54 -05:00
|
|
|
org.apache.archiva.admin.model.beans
|
2011-11-22 09:17:04 -05:00
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-11-19 12:16:20 -05:00
|
|
|
</project>
|