Hi Michael, from what I see, Java and Scala examples reside in different packages, e.g. * org.apache.flink.streaming.scala.examples.async.AsyncIOExample vs. * org.apache.flink.streaming.examples.async.AsyncIOExample
A quick run on the Flink 1.3. branch revealed flink-examples- streaming_2.10-1.3-SNAPSHOT.jar containing both (which you can verify with your favorite archiver tool for zip files). Afaik, there is no simple switch to turn off Java or Scala examples. You may either adapt the pom.xml or create your own Project with the examples and programming languages you need. Nico On Saturday, 23 September 2017 12:45:04 CEST Michael Fong wrote: > Hi, > > I am studying how to build a scala program from flink-examples/. > > I can see there are two source folders java/ and scala/ from IntelliJ, and > for most examples, there is a copy of examples for Java and Scala. > Executing 'mvn clean package -Pbuild-jar' would rests in a jar file under > target/. I am wondering if that is a Java or Scala example that I just > compiled? In addition, is there a way to selectively choose Java o Scala > example to build with current maven settings? > > Thanks in advance,