Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/pom.xml @ 5982

Last change on this file since 5982 was 5982, checked in by bfarka, 13 years ago

added ServiceDependicies for all 4 services #1441

File size: 1.2 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3  <modelVersion>4.0.0</modelVersion>
4  <groupId>com.heursticlab.okb</groupId>
5  <artifactId>OKBJavaConnector</artifactId>
6  <version>0.0.1-SNAPSHOT</version>
7  <packaging>pom</packaging>
8  <dependencies>
9    <dependency>
10      <groupId>com.google.guava</groupId>
11      <artifactId>guava</artifactId>
12      <version>r08</version>
13      <scope>compile</scope>
14    </dependency>
15  </dependencies>
16  <build>
17    <plugins>
18      <plugin>
19        <groupId>org.apache.maven.plugins</groupId>
20        <artifactId>maven-compiler-plugin</artifactId>
21        <version>2.3.2</version>
22        <configuration>
23          <source>1.6</source>
24          <target>1.6</target>
25          <encoding>utf-8</encoding>
26          <debug>true</debug>
27          <optimize>false</optimize>
28        </configuration>
29      </plugin>
30    </plugins>
31  </build>
32  <modules>
33    <module>AuthenticationService</module>
34    <module>AdministrationService</module>
35    <module>RunCreationService</module>
36    <module>QueryService</module>
37  </modules>
38</project>
Note: See TracBrowser for help on using the repository browser.