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 | <parent>
|
---|
5 | <artifactId>OKBJavaConnector</artifactId>
|
---|
6 | <groupId>com.heursticlab.okb</groupId>
|
---|
7 | <version>0.0.1-SNAPSHOT</version>
|
---|
8 | </parent>
|
---|
9 | <groupId>com.heursticlab.okb</groupId>
|
---|
10 | <artifactId>AdministrationService</artifactId>
|
---|
11 | <version>0.0.1-SNAPSHOT</version>
|
---|
12 | <dependencies>
|
---|
13 |
|
---|
14 | <dependency>
|
---|
15 | <groupId>com.google.guava</groupId>
|
---|
16 | <artifactId>guava</artifactId>
|
---|
17 |
|
---|
18 | <scope>compile</scope>
|
---|
19 | </dependency>
|
---|
20 | <dependency>
|
---|
21 | <groupId>junit</groupId>
|
---|
22 | <artifactId>junit</artifactId>
|
---|
23 |
|
---|
24 | <scope>test</scope>
|
---|
25 | </dependency>
|
---|
26 | </dependencies>
|
---|
27 | <build>
|
---|
28 | <plugins>
|
---|
29 | <plugin>
|
---|
30 | <groupId>org.codehaus.mojo</groupId>
|
---|
31 | <artifactId>jaxws-maven-plugin</artifactId>
|
---|
32 | <executions>
|
---|
33 | <execution>
|
---|
34 | <goals>
|
---|
35 | <goal>wsimport</goal>
|
---|
36 | </goals>
|
---|
37 | </execution>
|
---|
38 | </executions>
|
---|
39 | <configuration>
|
---|
40 | <packageName>com.heuristiclab.okb.services.administration</packageName>
|
---|
41 | </configuration>
|
---|
42 | </plugin>
|
---|
43 | <plugin>
|
---|
44 | <groupId>org.apache.maven.plugins</groupId>
|
---|
45 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
46 | <version>2.3.2</version>
|
---|
47 | <configuration>
|
---|
48 | <source>1.6</source>
|
---|
49 | <target>1.6</target>
|
---|
50 | <encoding>utf-8</encoding>
|
---|
51 | <debug>true</debug>
|
---|
52 | <optimize>false</optimize>
|
---|
53 | </configuration>
|
---|
54 | </plugin>
|
---|
55 | </plugins>
|
---|
56 | </build>
|
---|
57 | </project> |
---|
Note: See
TracBrowser
for help on using the repository browser.