diff --git a/sylvilagus/scala/.gitignore b/sylvilagus/scala/.gitignore index 2e713f9..acda17d 100644 --- a/sylvilagus/scala/.gitignore +++ b/sylvilagus/scala/.gitignore @@ -1,3 +1,43 @@ -/.env -/target/ -/project/target/ +# use glob syntax. +syntax: glob +*.ser +*.class +*~ +*.bak +#*.off +*.old + +.env + +# eclipse conf file +.settings +.classpath +.project +.manager +.scala_dependencies + +# idea +.idea +*.iml + +# building +target +build +null +tmp* +temp* +dist +test-output +build.log + +# other scm +.svn +.CVS +.hg* + +# switch to regexp syntax. +# syntax: regexp +# ^\.pc/ + +#SHITTY output not in target directory +build.log diff --git a/sylvilagus/scala/pom.xml b/sylvilagus/scala/pom.xml new file mode 100644 index 0000000..4f3d6f8 --- /dev/null +++ b/sylvilagus/scala/pom.xml @@ -0,0 +1,116 @@ + + 4.0.0 + com.meatballhat.sylvilagus + sylvilagus + 0.1.0 + ${project.artifactId} + Scala stuff accumulated for RabbitMQ in Action + 2012 + + + 1.5 + 1.5 + UTF-8 + 2.9.2 + + + + + + org.scala-lang + scala-library + ${scala.version} + + + com.rabbitmq + amqp-client + 2.8.7 + + + + + junit + junit + 4.8.1 + test + + + org.scala-tools.testing + specs_${scala.version} + 1.6.5 + test + + + org.scalatest + scalatest + 1.2 + test + + + + + src/main/scala + src/test/scala + + + org.scala-tools + maven-scala-plugin + 2.15.0 + + + + compile + testCompile + + + + -make:transitive + -dependencyfile + ${project.build.directory}/.scala_dependencies + + + + + + + + sylvilagus-ch02-hello-world-producer + com.meatballhat.sylvilagus.ch02.HelloWorldProducer + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.6 + + false + true + + + + **/*Test.* + **/*Suite.* + + + + + +