|  | @@ -5,7 +5,7 @@
 | 
	
		
			
				|  |  |          <artifactId>spring-security-parent</artifactId>
 | 
	
		
			
				|  |  |          <version>2.0-SNAPSHOT</version>
 | 
	
		
			
				|  |  |      </parent>
 | 
	
		
			
				|  |  | -    <packaging>jar</packaging>
 | 
	
		
			
				|  |  | +    <packaging>bundle</packaging>
 | 
	
		
			
				|  |  |      <artifactId>spring-security-core</artifactId>
 | 
	
		
			
				|  |  |      <name>Spring Security - Core</name>
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -140,24 +140,31 @@
 | 
	
		
			
				|  |  |      </dependencies>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <build>
 | 
	
		
			
				|  |  | -        <resources>
 | 
	
		
			
				|  |  | -            <resource>
 | 
	
		
			
				|  |  | -                <directory>${basedir}/../</directory>
 | 
	
		
			
				|  |  | -                <targetPath>META-INF</targetPath>
 | 
	
		
			
				|  |  | -                <includes>
 | 
	
		
			
				|  |  | -                    <include>notice.txt</include>
 | 
	
		
			
				|  |  | -                </includes>
 | 
	
		
			
				|  |  | -                <filtering>false</filtering>
 | 
	
		
			
				|  |  | -            </resource>
 | 
	
		
			
				|  |  | -            <resource>
 | 
	
		
			
				|  |  | -                <directory>${basedir}/src/main/resources</directory>
 | 
	
		
			
				|  |  | -                <targetPath>/</targetPath>
 | 
	
		
			
				|  |  | -                <includes>
 | 
	
		
			
				|  |  | -                    <include>**/*</include>
 | 
	
		
			
				|  |  | -                </includes>
 | 
	
		
			
				|  |  | -                <filtering>false</filtering>
 | 
	
		
			
				|  |  | -            </resource>
 | 
	
		
			
				|  |  | -        </resources>
 | 
	
		
			
				|  |  | +        <plugins>
 | 
	
		
			
				|  |  | +            <plugin>
 | 
	
		
			
				|  |  | +                <groupId>org.apache.felix</groupId>
 | 
	
		
			
				|  |  | +                <artifactId>maven-bundle-plugin</artifactId>
 | 
	
		
			
				|  |  | +                <version>${felix.version}</version>
 | 
	
		
			
				|  |  | +                <extensions>true</extensions>
 | 
	
		
			
				|  |  | +                <configuration>
 | 
	
		
			
				|  |  | +                    <instructions>
 | 
	
		
			
				|  |  | +                        <Export-Package>org.springframework.security.*;version=${pom.version}</Export-Package>
 | 
	
		
			
				|  |  | +                        <Private-Package>!org.springframework.security.*</Private-Package>
 | 
	
		
			
				|  |  | +                        <Implementation-Title>${pom.name}</Implementation-Title>
 | 
	
		
			
				|  |  | +                        <Implementation-Version>${pom.version}</Implementation-Version>
 | 
	
		
			
				|  |  | +                        <Import-Package>
 | 
	
		
			
				|  |  | +                            org.springframework*;resolution:=optional;version="[2.0,2.5]",
 | 
	
		
			
				|  |  | +                        	*;resolution:=optional
 | 
	
		
			
				|  |  | +                        </Import-Package>
 | 
	
		
			
				|  |  | +<!--                         
 | 
	
		
			
				|  |  | +                        <Embed-Dependency>
 | 
	
		
			
				|  |  | +                        	*;scope=compile|runtime;inline=true
 | 
	
		
			
				|  |  | +                        </Embed-Dependency>
 | 
	
		
			
				|  |  | + -->                        
 | 
	
		
			
				|  |  | +                    </instructions>
 | 
	
		
			
				|  |  | +                </configuration>
 | 
	
		
			
				|  |  | +            </plugin>            
 | 
	
		
			
				|  |  | +        </plugins>
 | 
	
		
			
				|  |  |      </build>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  </project>
 |