Free cookie consent management tool by TermsFeed Policy Generator

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