Home | History | Annotate | Download | only in 1.7.2
      1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      3 
      4   <parent>
      5     <groupId>org.slf4j</groupId>
      6     <artifactId>slf4j-parent</artifactId>
      7     <version>1.7.2</version>
      8   </parent>
      9 
     10   <modelVersion>4.0.0</modelVersion>
     11 
     12   <groupId>org.slf4j</groupId>
     13   <artifactId>slf4j-simple</artifactId>
     14   <packaging>jar</packaging>
     15   <name>SLF4J Simple Binding</name>
     16   <description>SLF4J Simple binding</description>
     17   <url>http://www.slf4j.org</url>
     18 
     19   <dependencies>
     20     <dependency>
     21       <groupId>org.slf4j</groupId>
     22       <artifactId>slf4j-api</artifactId>
     23     </dependency>
     24   </dependencies>
     25 
     26 
     27   <build>
     28     <plugins>
     29       <plugin>
     30         <groupId>org.apache.maven.plugins</groupId>
     31         <artifactId>maven-jar-plugin</artifactId>
     32         <configuration>
     33           <archive>
     34             <manifestEntries>
     35               <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
     36               <Bundle-Description>${project.description}</Bundle-Description>
     37               <Implementation-Version>${project.version}</Implementation-Version>
     38             </manifestEntries>
     39             <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
     40           </archive>
     41         </configuration>
     42       </plugin>
     43 
     44     </plugins>
     45   </build>
     46 
     47 
     48 </project>