This file contains 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 characters
FROM debian:9 | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN \ | |
apt-get update \ | |
&& apt-get dist-upgrade -y | |
RUN apt-get install -y cmake curl build-essential \ | |
# for mediastreamer2 required | |
libspeexdsp-dev libavcodec-dev \ |
This file contains 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 characters
package org.arquillian.example; | |
import java.lang.reflect.Method; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.HashSet; | |
import java.util.List; | |
import java.util.Set; | |
import javax.inject.Inject; | |
import javax.persistence.EntityManager; |