Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/AuthenticationService/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.3 KB
Line 
1<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">
2  <modelVersion>4.0.0</modelVersion>
3  <parent>
4    <artifactId>OKBJavaConnector</artifactId>
5    <groupId>com.heursticlab.okb</groupId>
6    <version>0.0.1-SNAPSHOT</version>
7  </parent>
8  <groupId>com.heursticlab.okb</groupId>
9  <artifactId>AuthenticationService</artifactId>
10  <version>0.0.1-SNAPSHOT</version>
11 
12  <build>
13       
14    <plugins>
15      <plugin>
16        <groupId>org.codehaus.mojo</groupId>
17        <artifactId>jaxws-maven-plugin</artifactId>
18        <executions>
19          <execution>
20            <goals>
21              <goal>wsimport</goal>
22            </goals>
23          </execution>
24        </executions>
25        <configuration>
26          <packageName>com.heuristiclab.okb.services.authentication</packageName>
27        </configuration>
28      </plugin>
29      <plugin>
30        <groupId>org.apache.maven.plugins</groupId>
31        <artifactId>maven-compiler-plugin</artifactId>
32        <version>2.3.2</version>
33        <configuration>
34          <source>1.6</source>
35          <target>1.6</target>
36          <encoding>utf-8</encoding>
37          <debug>true</debug>
38          <optimize>false</optimize>
39        </configuration>
40      </plugin>
41    </plugins>
42  </build>
43</project>
Note: See TracBrowser for help on using the repository browser.