123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <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>
- <parent>
- <artifactId>parent</artifactId>
- <groupId>no.priv.bang.ukelonn</groupId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>ukelonn.bundle</artifactId>
- <packaging>war</packaging>
- <name>Ukelonn webapp OSGi bundle</name>
- <dependencies>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.api</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.api</artifactId>
- <version>${project.version}</version>
- <type>xml</type>
- <classifier>features</classifier>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.bundle.db.liquibase</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.bundle.db.test</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.service.log</artifactId>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.service.jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>no.steria.osgi.jsr330activator</groupId>
- <artifactId>jsr330activator.implementation</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-library</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.ops4j.pax.web</groupId>
- <artifactId>pax-web-api</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.ops4j.pax.jdbc</groupId>
- <artifactId>pax-jdbc-derby</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.liquibase</groupId>
- <artifactId>liquibase-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.derby</groupId>
- <artifactId>derby</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.7.21</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-server</artifactId>
- </dependency>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-themes</artifactId>
- </dependency>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-client-compiled</artifactId>
- </dependency>
- <dependency>
- <groupId>com.vaadin.addon</groupId>
- <artifactId>vaadin-touchkit-agpl</artifactId>
- </dependency>
- </dependencies>
- <build>
- <testResources>
- <testResource>
- <directory>src/main/webapp/WEB-INF</directory>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <configuration>
- <supportedProjectTypes>
- <supportedProjectType>jar</supportedProjectType>
- <supportedProjectType>bundle</supportedProjectType>
- <supportedProjectType>war</supportedProjectType>
- </supportedProjectTypes>
- <instructions>
- <_wab>src/main/webapp</_wab>
- <Bundle-SymbolicName>no.priv.bang.ukelonn</Bundle-SymbolicName>
- <Bundle-Activator>no.steria.osgi.jsr330activator.Jsr330Activator</Bundle-Activator>
- <Bundle-Version>${project.version}</Bundle-Version>
- <Import-Package>
- no.priv.bang.ukelonn,
- javax.el,
- javax.servlet.jsp;version="[2.2.0,3.0.0)",
- javax.servlet.jsp.jstl.core;version="1.2",
- javax.servlet.jsp.jstl.fmt;version="1.2",
- javax.servlet.jsp.jstl.tlv;version="1.2",
- javax.servlet;version="[2.6.0,4.0.0)",
- javax.servlet.http;version="[2.6.0,4.0.0)",
- com.vaadin.shared,
- org.apache.shiro.web.env,
- org.apache.shiro.web.servlet,
- com.vaadin.server,
- com.vaadin.addon.touchkit.server,
- com.vaadin.addon.touchkit.settings,
- com.vaadin.addon.touchkit.annotations,
- VAADIN.widgetsets.com.vaadin.addon.touchkit.gwt.TouchKitWidgetSet,
- VAADIN.widgetsets.com.vaadin.addon.touchkit.gwt.TouchKitWidgetSet.deferredjs.0A32B241463C3CF770B8CD52599C1C21,
- com.vaadin.addon.touchkit.extensions,
- com.vaadin.addon.touchkit.gwt,
- com.vaadin.addon.touchkit.gwt.client,
- com.vaadin.addon.touchkit.gwt.client.communication,
- com.vaadin.addon.touchkit.gwt.client.offlinemode,
- com.vaadin.addon.touchkit.gwt.client.theme,
- com.vaadin.addon.touchkit.gwt.client.theme.fonts,
- com.vaadin.addon.touchkit.gwt.client.theme.img,
- com.vaadin.addon.touchkit.gwt.client.ui,
- com.vaadin.addon.touchkit.gwt.client.vcom,
- com.vaadin.addon.touchkit.gwt.client.vcom.navigation,
- com.vaadin.addon.touchkit.gwt.client.vcom.popover,
- com.vaadin.addon.touchkit.service,
- com.vaadin.addon.touchkit.ui,
- assets,
- VAADIN.themes,
- VAADIN.widgetsets,
- *
- </Import-Package>
- <Export-Package>!*</Export-Package>
- <Embed-Dependency>jsr330activator.implementation;inline=true,javax.inject;inline=true,*;scope=runtime,type!=pom</Embed-Dependency>
- <Bundle-Classpath>WEB-INF/classes, WEB-INF/lib</Bundle-Classpath>
- <Web-ContextPath>ukelonn</Web-ContextPath>
- <_removeheaders>
- Include-Resource,
- Private-Package,
- Embed-Dependency,
- Embed-Transitive
- </_removeheaders>
- </instructions>
- </configuration>
- <executions>
- <execution>
- <id>bundle</id>
- <goals>
- <goal>bundle</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.karaf.tooling</groupId>
- <artifactId>karaf-maven-plugin</artifactId>
- <configuration>
- <primaryFeatureName>ukelonn</primaryFeatureName>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|