Skip to content
Snippets Groups Projects
pom.xml 3.16 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?xml version="1.0" encoding="UTF-8"?>
    <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">
    
    	<!-- 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. -->
    
    	<modelVersion>4.0.0</modelVersion>
    
    	<packaging>bundle</packaging>
    
    	<groupId>info.kwarc.sally4</groupId>
    	<artifactId>MathHubWorker</artifactId>
    
    	<version>${sally4.version}</version>
    
    	<parent>
    		<groupId>info.kwarc.sally</groupId>
    		<artifactId>sally</artifactId>
    		<version>1.0</version>
    		<relativePath>..</relativePath>
    	</parent>
    
    
    
    	<dependencies>
    		<dependency>
    			<groupId>org.osgi</groupId>
    			<artifactId>org.osgi.core</artifactId>
    			<version>4.3.1</version>
    			<scope>provided</scope>
    		</dependency>
    
    		<dependency>
    			<groupId>org.apache.felix</groupId>
    			<artifactId>org.apache.felix.ipojo.annotations</artifactId>
    			<version>1.11.2</version>
    		</dependency>
    
    		<dependency>
    			<groupId>org.apache.camel</groupId>
    			<artifactId>camel-core</artifactId>
    			<version>2.12.3</version>
    		</dependency>
    
    		<dependency>
    			<groupId>info.kwarc.sally4</groupId>
    			<artifactId>core</artifactId>
    
    			<version>${sally4.version}</version>
    
    		</dependency>
    
    		<dependency>
    			<groupId>info.kwarc.sally4</groupId>
    			<artifactId>planetary</artifactId>
    
    			<version>${sally4.version}</version>
    
    		</dependency>
    
    Constantin Jucovschi's avatar
    Constantin Jucovschi committed
    		
    		
    		<dependency>
    			<groupId>info.kwarc.sally4</groupId>
    			<artifactId>docmanager</artifactId>
    
    			<version>${sally4.version}</version>
    
    Constantin Jucovschi's avatar
    Constantin Jucovschi committed
    		</dependency>
    
    
    	</dependencies>
    
    	<build>
    		<plugins>
    			<!-- BND Maven Plugin Configuration -->
    			<plugin>
    				<groupId>org.apache.felix</groupId>
    				<artifactId>maven-bundle-plugin</artifactId>
    				<extensions>true</extensions>
    				<configuration>
    					<instructions>
    
    Constantin Jucovschi's avatar
    Constantin Jucovschi committed
    						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
    
    						<Private-Package>info.kwarc.sally4.mathhubworker.impl*</Private-Package>
    
    						<Export-Package>info.kwarc.sally4.mathhubworker*;info.kwarc.sally.comm.mathhubworker*</Export-Package>
    
    					</instructions>
    				</configuration>
    			</plugin>
    			<!-- iPOJO Maven Plugin Configuration : nothing to do -->
    			<plugin>
    				<groupId>org.apache.felix</groupId>
    				<artifactId>maven-ipojo-plugin</artifactId>
    
    Constantin Jucovschi's avatar
    Constantin Jucovschi committed
    				<version>1.11.2</version>
    
    				<executions>
    					<execution>
    						<goals>
    							<goal>ipojo-bundle</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    		</plugins>
    	</build>
    </project>