Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/pom.xml @ 5985

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

added dependencies for junit #1441

File size: 1.4 KB
RevLine 
[5982]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>
[5985]8  <dependencyManagement>
9    <dependencies>
10      <dependency>
11        <groupId>com.google.guava</groupId>
12        <artifactId>guava</artifactId>
13        <version>r08</version>
14        <scope>compile</scope>
15      </dependency>
16      <dependency>
17        <groupId>junit</groupId>
18        <artifactId>junit</artifactId>
19        <version>4.8.2</version>
20        <scope>test</scope>
21      </dependency>
22    </dependencies>
23
24  </dependencyManagement>
25
[5982]26  <build>
[5981]27    <plugins>
28      <plugin>
29        <groupId>org.apache.maven.plugins</groupId>
30        <artifactId>maven-compiler-plugin</artifactId>
31        <version>2.3.2</version>
32        <configuration>
33          <source>1.6</source>
34          <target>1.6</target>
35          <encoding>utf-8</encoding>
36          <debug>true</debug>
37          <optimize>false</optimize>
38        </configuration>
39      </plugin>
40    </plugins>
41  </build>
[5982]42  <modules>
43    <module>AuthenticationService</module>
44    <module>AdministrationService</module>
45    <module>RunCreationService</module>
46    <module>QueryService</module>
47  </modules>
[5981]48</project>
Note: See TracBrowser for help on using the repository browser.