|
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>integration-test</artifactId> <name>Dining Hakker :: Integration Test</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>api</artifactId> </dependency> <dependency> <groupId>org.apache.karaf.tooling.exam</groupId> <artifactId>org.apache.karaf.tooling.exam.container</artifactId> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-junit4</artifactId> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-testkit_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_${scala.dep.version}</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <build> <plugins> <!-- This is to allow use of versionAsInProject --> <plugin> <groupId>org.ops4j.pax.exam</groupId> <artifactId>maven-paxexam-plugin</artifactId> <version>1.2.4</version> <executions> <execution> <id>generate-config</id> <goals> <goal>generate-depends-file</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> <configuration> <systemPropertyVariables> <pax.exam.service.timeout>30000</pax.exam.service.timeout> <karaf.version>${karaf.version}</karaf.version> <project.version>${project.version}</project.version> <scala.dep.version>${scala.dep.version}</scala.dep.version> </systemPropertyVariables> </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.