Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@ jobs:
- name: Build samples
shell: bash
run: mvn -U -e -B -ntp clean install -f samples
- name: Run idverifier
shell: bash
run: timeout --preserve-status 10 bash ./samples/blueprint/idverifier/idverifier-assembly/target/run.sh || exit 0
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ osgi.bundles=\
cm-${cmVersion}.jar@start,\
services-${servicesVersion}.jar@start,\
asm-all-${asmVersion}.jar@start,\
pax-logging-api-${paxLoggingApiVersion}.jar@start,\
pax-logging-service-${paxLoggingServiceVersion}.jar@start,\
pax-logging-api-${pax-logging.version}.jar@start,\
pax-logging-service-${pax-logging.version}.jar@start,\
derby-${derbyVersion}.jar@start,\
commons-collections-${commonsCollectionsVersion}.jar@start,\
commons-lang-${commonsLangVersion}.jar@start,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ osgi.bundles=\
cm-${cmVersion}@start,\
services-${servicesVersion}.jar@start,\
asm-all-${asmVersion}.jar@start,\
pax-logging-api-${paxLoggingApiVersion}.jar@start,\
pax-logging-service-${paxLoggingServiceVersion}.jar@start,\
pax-logging-api-${pax-logging.version}.jar@start,\
pax-logging-service-${pax-logging.version}.jar@start,\
derby-${derbyVersion}.jar@start,\
pax-web-jetty-bundle-${paxWebJettyBundleVersion}.jar@start,\
pax-web-extender-war-${paxWebExtenderWarVersion}.jar@start,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
osgi.bundles=\
cm-${cmVersion}@start,\
services-${servicesVersion}@start,\
pax-logging-api-${paxLoggingApiVersion}.jar@start,\
pax-logging-service-${paxLoggingServiceVersion}.jar@start,\
pax-logging-api-${pax-logging.version}.jar@start,\
pax-logging-service-${pax-logging.version}.jar@start,\
asm-all-${asmVersion}.jar@start,\
org.apache.aries.proxy-${ariesProxyVersion}.jar@start,\
org.apache.aries.util-${ariesUtilVersion}.jar@start,\
Expand Down
56 changes: 43 additions & 13 deletions samples/blueprint/idverifier/idverifier-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,57 @@
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
</dependency>

<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
</dependency>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.shell</artifactId>
<artifactId>org.apache.felix.bundlerepository</artifactId>
</dependency>

<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.shell.tui</artifactId>
<artifactId>org.apache.felix.gogo.command</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.gogo.jline</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.gogo.runtime</artifactId>
</dependency>

<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.configadmin</artifactId>
</dependency>

<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.eventadmin</artifactId>
</dependency>

<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
</dependency>

<dependency>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId>
Expand All @@ -75,20 +105,20 @@

<dependency>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint</artifactId>
<artifactId>org.apache.aries.blueprint.api</artifactId>
</dependency>

<dependency>
<groupId>org.apache.aries</groupId>
<artifactId>org.apache.aries.util</artifactId>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint.core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.aries.jmx</groupId>
<artifactId>org.apache.aries.jmx.blueprint</artifactId>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint.cm</artifactId>
</dependency>

<dependency>
<groupId>asm</groupId>
<artifactId>asm-all</artifactId>
<groupId>org.apache.aries</groupId>
<artifactId>org.apache.aries.util</artifactId>
</dependency>

<dependency>
Expand Down
Loading