|
Akka/Scala example source code file (pom.xml)
The pom.xml Akka example source code<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.typesafe.akka.akka-sample-osgi-dining-hakkers</groupId> <artifactId>project</artifactId> <version>2.4-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>core</artifactId> <name>Dining Hakker :: Core</name> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-osgi_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-remote_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-slf4j_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-persistence-experimental_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>api</artifactId> </dependency> <!--remoting dependencies--> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-cluster_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>org.iq80.leveldb</groupId> <artifactId>leveldb</artifactId> </dependency> <dependency> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni-all</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Private-Package>akka.sample.osgi.internal, akka.sample.osgi.service</Private-Package> <Bundle-Activator>akka.sample.osgi.activation.Activator</Bundle-Activator> </instructions> </configuration> </plugin> </plugins> </build> </project> Other Akka source code examplesHere is a short list of links related to this Akka pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.