Last active
July 14, 2021 10:15
-
-
Save sbrinkmann/6c60cac1f2bfea8f6ff1 to your computer and use it in GitHub Desktop.
Revisions
-
sbrinkmann revised this gist
Jun 21, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -36,12 +36,12 @@ </build> <dependencies> <!-- Add as many dependencies until there are no more unresolved dependencies --> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-kernel</artifactId> <version>1.6.2</version> </dependency> </dependencies> </project> -
sbrinkmann revised this gist
Jun 21, 2014 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,8 +22,13 @@ <Export-Package>de.eggs.myBundle*</Export-Package> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Import-Package> !com.sun.jdmk.comm, !javax.jms, !org.apache.avalon.framework.logger, !org.apache.log, * </Import-Package> </instructions> </configuration> </plugin> -
sbrinkmann revised this gist
Jun 21, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,8 +22,8 @@ <Export-Package>de.eggs.myBundle*</Export-Package> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Import-Package>!com.sun.jdmk.comm,!javax.jms, !org.apache.avalon.framework.logger,!org.apache.log,*</Import-Package> </instructions> </configuration> </plugin> -
sbrinkmann revised this gist
Jun 21, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,7 +22,8 @@ <Export-Package>de.eggs.myBundle*</Export-Package> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Import-Package>!com.sun.jdmk.comm,!javax.jms,!org.apache.avalon.framework.logger, !org.apache.log,*</Import-Package> </instructions> </configuration> </plugin> -
sbrinkmann revised this gist
Jun 21, 2014 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,6 +22,7 @@ <Export-Package>de.eggs.myBundle*</Export-Package> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Import-Package>!com.sun.jdmk.comm,!javax.jms,!org.apache.avalon.framework.logger,!org.apache.log,*</Import-Package> </instructions> </configuration> </plugin> @@ -34,6 +35,7 @@ <artifactId>axis2-kernel</artifactId> <version>1.6.2</version> </dependency> <!-- Add as many dependencies until there are no more unresolved dependencies --> </dependencies> </project> -
sbrinkmann created this gist
Jun 21, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ <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"> <modelVersion>4.0.0</modelVersion> <groupId>de.eggs.cq.generic</groupId> <artifactId>MyBundleEmbeddedDependencyUnresolved</artifactId> <version>14.01.0-SNAPSHOT</version> <name>My Bundle Name</name> <description>My Bundle Description</description> <packaging>bundle</packaging> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.5</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>de.eggs.myBundle*</Export-Package> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-kernel</artifactId> <version>1.6.2</version> </dependency> </dependencies> </project>