Hi Bryan, Sounds great, would be fantastic if you'd consider contributing it to our documentation!
http://doc.akka.io/docs/akka/2.2.3/dev/developer-guidelines.html http://doc.akka.io/docs/akka/2.2.3/dev/documentation.html On Fri, Jan 24, 2014 at 1:11 PM, bryan hunt <[email protected]> wrote: > For those who are using Maven as a build tool, a similar problem exists, > fortunately it can be circumvented by merging the resource.conf files > together. > > The Maven shade plugin configuration for doing so is as follows: > > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-shade-plugin</artifactId> > <version>1.5</version> > <executions> > <execution> > <phase>package</phase> > <goals> > <goal>shade</goal> > </goals> > <configuration> > > <shadedArtifactAttached>true</shadedArtifactAttached> > > <shadedClassifierName>allinone</shadedClassifierName> > <artifactSet> > <includes> > <include>*:*</include> > </includes> > </artifactSet> > <transformers> > <transformer > > implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> > <resource>reference.conf</resource> > </transformer> > <transformer > > implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> > <manifestEntries> > > <Main-Class>com.binarytemple.FooMain</Main-Class> > </manifestEntries> > </transformer> > </transformers> > </configuration> > </execution> > </executions> > </plugin> > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: http://akka.io/faq/ > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/groups/opt_out. > -- Cheers, √ * ——————— **Viktor Klang* *Chief Architect - **Typesafe <http://www.typesafe.com/>* Twitter: @viktorklang -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/groups/opt_out.
