Home | History | Annotate | Download | only in lib
      1 <project 
      2   xmlns="http://maven.apache.org/POM/4.0.0" 
      3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      5 
      6 	<parent>
      7 		<groupId>org.slf4j</groupId>
      8 		<artifactId>slf4j-parent</artifactId>
      9     	<version>1.6.1</version>
     10 	</parent>
     11 	
     12 	<modelVersion>4.0.0</modelVersion>
     13 
     14 	<groupId>org.slf4j</groupId>
     15 	<artifactId>slf4j-jdk14</artifactId>
     16 
     17 	<packaging>jar</packaging>
     18 	<name>SLF4J JDK14 Binding</name>
     19 
     20 	<url>http://www.slf4j.org</url>
     21 	<description>
     22 		The slf4j JDK14 binding
     23 	</description>
     24 
     25   <dependencies>
     26 	  <dependency>
     27       <groupId>org.slf4j</groupId>
     28       <artifactId>slf4j-api</artifactId>
     29 		</dependency>
     30 
     31     <dependency>
     32       <groupId>org.slf4j</groupId>
     33       <artifactId>slf4j-api</artifactId>
     34       <type>test-jar</type>
     35       <version>${project.version}</version>
     36       <scope>test</scope>
     37     </dependency>
     38   </dependencies>
     39 
     40   <build>
     41 		<plugins>
     42 
     43 			<plugin>
     44 				<groupId>org.apache.maven.plugins</groupId>
     45 				<artifactId>maven-compiler-plugin</artifactId>
     46 				<configuration>
     47 					<source>1.4</source>
     48 					<target>1.4</target>
     49 				</configuration>
     50 			</plugin>
     51 
     52 			<plugin>
     53 			  <groupId>org.apache.maven.plugins</groupId>
     54         <artifactId>maven-jar-plugin</artifactId>
     55         <configuration>
     56           <archive>
     57             <manifestEntries>
     58               <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
     59               <Bundle-Description>${project.description}</Bundle-Description>
     60               <Implementation-Version>${project.version}</Implementation-Version>
     61             </manifestEntries>
     62             <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
     63           </archive>
     64         </configuration>			
     65       </plugin>
     66     </plugins>
     67   </build>
     68 
     69 </project>