Skip to content

Commit

Permalink
Make -ui jar OSGi compatible: add manifest to it
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Anisimov committed Jul 16, 2018
1 parent 533c514 commit 24ded0b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions flow-tests/test-root-context/bnd.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Bundle-SymbolicName: ${project.groupId}.flow.test-root-context
Bundle-Name: Vaadin Flow Root Context Server Tests
Bundle-Version: ${osgi.bundle.version}
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0
Import-Package: org.atmosphere*;resolution:=optional;version='${atmosphere.runtime.version}',\
*
Export-Package: com.vaadin.flow.uitest*;-noimport:=true
9 changes: 9 additions & 0 deletions flow-tests/test-root-context/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<index>false</index>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>ui-tests</id>
Expand Down

0 comments on commit 24ded0b

Please sign in to comment.